Created
September 21, 2016 15:25
-
-
Save ivandenysov/67b52c3bc6e1e65d6db5982c06842f9e to your computer and use it in GitHub Desktop.
lab01_r04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program lab01_r04; | |
var a, b, c, d: integer; | |
begin | |
a:= 157 div 11; | |
b:= 28 div 5; | |
c:= 18 mod 17; | |
d:= 113 mod 45; | |
writeln(a); | |
writeln(b); | |
writeln(c); | |
writeln(d); | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment