You are on page 1of 1

{ converter o algoritmo do ex.

18 de pseudocodigo para pascal } program tabuada_ciclo_repeat; uses crt; var num, i: integer; begin clrscr; write('Tabuada do: '); readln(num); i:=1; repeat writeln(i,' x ',num,' = ', i*num); i:=i+1; until i=10+1; readln; end.

You might also like