Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Loops-Do-while/Pascal/loops-do-while.pas
Normal file
12
Task/Loops-Do-while/Pascal/loops-do-while.pas
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
program countto6(output);
|
||||
|
||||
var
|
||||
i: integer;
|
||||
|
||||
begin
|
||||
i := 0;
|
||||
repeat
|
||||
i := i + 1;
|
||||
writeln(i)
|
||||
until i mod 6 = 0
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue