UniTO/anno2/Sem2/lft/progetto/es5.program
2024-10-29 09:11:05 +01:00

14 lines
No EOL
204 B
Text
Executable file

/*while(x<>2)
x := x + 1;
while(x>2){
print(x);
print(x);
read(x)
};
*/
x := 49 ; y := 21 ; while (x <> y)
case when (x < y) y := y - x
when (x > 2) print(y)
else x := x - y