Created
February 19, 2015 18:36
-
-
Save Kanol/c98527fbbecdc365ff02 to your computer and use it in GitHub Desktop.
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 n1; | |
var a, b, c, d:integer; | |
begin | |
writeln('Введите сумму имеющихся у вас денег'); | |
readln(a); | |
Writeln('Введите стоимость одной единицы товара'); | |
readln(b); | |
c:=a div b; | |
d:=a mod b; | |
Writeln('Вы можете купить ', c, ' единиц товара'); | |
writeln('У вас останется ', d, ' единиц денег'); | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment