Skip to content

Instantly share code, notes, and snippets.

@Kanol
Created February 19, 2015 18:36
Show Gist options
  • Save Kanol/c98527fbbecdc365ff02 to your computer and use it in GitHub Desktop.
Save Kanol/c98527fbbecdc365ff02 to your computer and use it in GitHub Desktop.
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