Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
10
Task/Arithmetic-Integer/ALGOL-68/arithmetic-integer.alg
Normal file
10
Task/Arithmetic-Integer/ALGOL-68/arithmetic-integer.alg
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
main:(
|
||||
LONG INT a=355, b=113;
|
||||
printf(($"a PLUS b = a+b = "gl$, a + b));
|
||||
printf(($"a MINUS b = a-b = "gl$, a - b));
|
||||
printf(($"a TIMES b = a*b = a×b = "gl$, a * b));
|
||||
printf(($"a DIV b = a/b = "gl$, a / b));
|
||||
printf(($"a OVER b = a%b = a÷b = "gl$, a % b));
|
||||
printf(($"a MOD b = a%*b = a%×b = a÷×b = a÷*b = "gl$, a %* b));
|
||||
printf(($"a UP b = a**b = a↑b = "gl$, a ** b))
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue