cwtests/cw02/loops.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 21 Sep 2023 16:32:46 +0100 (17 months ago)
changeset 923 437e4f8d35d8
parent 833 aad5957eb7e4
permissions -rw-r--r--
updated
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
}