Fahad/MCG-CS/Code/for-loop.kcl
changeset 45 7545b1bc1514
equal deleted inserted replaced
44:a751aa1ee4f7 45:7545b1bc1514
       
     1 var ntimes = 0;
       
     2 print "Rate King's College from 1 to 10";
       
     3 read ntimes;
       
     4 var x = 0;
       
     5 var y = 0;
       
     6 for x = y to ntimes do
       
     7    print "King's College is the best";
       
     8 end;
       
     9 print "press any key to continue...";
       
    10 var continue = 0;
       
    11 read continue;