langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
|
|
@ -0,0 +1,9 @@
|
|||
a = Input["Give me an integer please!"];
|
||||
b = Input["Give me another integer please!"];
|
||||
Print["You gave me ", a, " and ", b];
|
||||
Print["sum: ", a + b];
|
||||
Print["difference: ", a - b];
|
||||
Print["product: ", a b];
|
||||
Print["integer quotient: ", IntegerPart[a/b]];
|
||||
Print["remainder: ", Mod[a, b]];
|
||||
Print["exponentiation: ", a^b];
|
||||
Loading…
Add table
Add a link
Reference in a new issue