luni, 20 mai 2013

Programare

mathpiper
2:
3://Print the odd integers from 1 to 99.
4:
5:x := 1;
6:
7:While(x <= 100)
8:[
9: Write(x);
10: x := x + 2; //Increment x by 2.
11:];
12:
13:%/mathpiper
14:
15: %output,preserve="false"
16: Result: True
17:
18: Side effects:
19: 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43
45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83
85 87 89 91 93 95 97 99
20: %/output

Niciun comentariu:

Trimiteți un comentariu