diff -r 54a483a33763 -r 02ef5c3abc51 solutions/cw2/loops.while --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/solutions/cw2/loops.while Fri Nov 04 12:07:40 2022 +0000 @@ -0,0 +1,14 @@ +start := 1000; +x := start; +y := start; +z := start; +while 0 < x do { + while 0 < y do { + while 0 < z do { z := z - 1 }; + z := start; + y := y - 1 + }; + y := start; + x := x - 1 +} +