Объясните, пожалуйста, эту программу, по пунктам! Зачем б и с обнулять, почему д=1000? Если распишите, буду безмерно благодарна!

program four;
uses crt;
var a, b, c, d, kop, rub:real;
begin
clrscr;
writeln('sena 1 kg fruktov');
readln(a);
b:=0;
c:=0;
d:=1000;
repeat
c:=c+b;
writeln('ves fructa ne bolee 150 g');
readln(b);
d:=d-b;
until d<0;
c:=c/1000;
a:=a*c;
rub:=trunc(a);
kop:=(frac(a))*100;
writeln(rub:4:0,' rub ',kop:4:0,' kop');
readkey;
end.​
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.