double factorial

This commit is contained in:
serso
2011-12-16 00:39:24 +04:00
parent 69a25604a3
commit 7bb5c02d6c
9 changed files with 11 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
xmlns:calc="http://schemas.android.com/apk/res/org.solovyev.android.calculator"
a:id="@+id/eightDigitButton" a:text="8"
calc:textUp="ln"
calc:textLeft="0b:"
calc:textLeft="0o:"
calc:textDown="lg"
calc:directionTextScale="0.5;0.5;0.5;0.33"
style="?digitButtonStyle"

View File

@@ -10,7 +10,7 @@
xmlns:calc="http://schemas.android.com/apk/res/org.solovyev.android.calculator"
a:id="@+id/nineDigitButton" a:text="9"
calc:textDown="e"
calc:textLeft="0o:"
calc:textLeft="0x:"
calc:textUp="π"
calc:directionTextScale="0.5;0.5;0.5;0.33"
style="?digitButtonStyle"

View File

@@ -10,7 +10,7 @@
xmlns:calc="http://schemas.android.com/apk/res/org.solovyev.android.calculator"
a:id="@+id/sevenDigitButton" a:text="7"
calc:textUp="i"
calc:textLeft="0x:"
calc:textLeft="0b:"
calc:textDown="!"
calc:directionTextScale="0.5;0.5;0.5;0.33"
style="?digitButtonStyle"

View File

@@ -183,6 +183,7 @@
<string name="c_op_description_integral_ab">Интегрирует функцию \'f(x)\' по переменной \'x\' от \'a\' до \'b\'.</string>
<string name="c_pf_description_factorial">Возвращает факториал от предыдущего выражения.</string>
<string name="c_pf_description_double_factorial">Возвращает двойной факториал от предыдущего выражения.</string>
<string name="c_pf_description_percent" formatted="false">Возвращает процентное значение от предыдущего выражения.\nПримеры:\n
100 + 50% = 150\n
100 * 50% = 50\n

View File

@@ -184,6 +184,7 @@
<string name="c_op_description_integral_ab">Integrates function \'f(x)\' by \'x\' variable from \'a\' to \'b\'.</string>
<string name="c_pf_description_factorial">Gives the factorial of the expression before.</string>
<string name="c_pf_description_double_factorial">Gives the double factorial of the expression before.</string>
<string name="c_pf_description_percent" formatted="false">Gives the percent value of the expression
before.\nExamples:\n
100 + 50% = 150\n