Viete mi to nejako vysvetlit?
Kód: Vybrať všetko
uses crt;
var a,b,i,x:integer;
begin
clrscr;
write('Zadaj cislo ktore chces nasobit: ');
readln(a);
write('Napis cislo ktorym chces nasobit: ');
readln(b);
for i:=1 to b do x:=(x+a);
writeln(x);
readln;
end.