var word : string var times, c : real put "Please enter your name" get word put "How many times do you want to print your name?" get times c:=1 loop put word exit when c = times c := c + 1 end loop var start, stop, table, ans : int put "What times table would you like to practice?" get table put "What number would you like to start at?" get start put "What number would you like to stop at?" get stop for multiplyer : start .. stop ans:= multiplyer * table put table, " x ", multiplyer, " = ", ans end for tartvar, endvar : int put "What should the start of the table be?" get startvar put "What should the end of the var be?" get endvar put "" put "Printing numbers..." for varval : startvar .. endvar put "" for carval : startvar .. endvar - varval put " ".. end for for barval : 0 .. varval put "#".. end for put " ", varval, " ".. end for