Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,8 @@
|
|||
set a = -17
|
||||
set b = 4
|
||||
echo "a+b = ".format(a+b,"%1d")
|
||||
echo "a-b = ".format(a-b,"%1d")
|
||||
echo "a*b = ".format(a*b,"%1d")
|
||||
echo "a DIV b = ".format(floor(a/b),"%1d")
|
||||
echo "a MOD b = ".format(a mod b,"%1d")
|
||||
echo "a^b = ".format(pow(a,b),"%1d")
|
||||
Loading…
Add table
Add a link
Reference in a new issue