Advertisement
Guest User

Untitled

a guest
Jun 15th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var a:INTEGER;
  2. BEGIN
  3.  a:=10;
  4.   WHILE a<100 DO
  5.   BEGIN
  6.   writeln(a);
  7.   a:=a+1;
  8.   END;
  9.   readln();
  10. END.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement