summaryrefslogtreecommitdiff
path: root/web/funnelAC/answers/ex07.out
blob: b6e41eea63b8d48583ffdf5f15101b1c5bc2289c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


x=1;
while (x<=10)
  {
   printf("X=%u\n",x);
  }


x:=1;
while (x<=10)
  {
   printf("X=%u\n",x);
  }


x=1;
while (x<=10)
  {
   printf("X=%u\n",x);
  }