| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

11_exercise1_solution

Page history last edited by Steve Sweeney 15 years, 1 month ago

var name : string

 

name := ""     %set to an "empty" string

 

loop

   put "What is your name?"

   get name

 

   if (name not= "Tim") then

      put "You are not Tim!"

   end if

 

   exit when (name = "Tim")

end loop

 

put "Welcome Tim!"

Comments (0)

You don't have permission to comment on this page.