Skip to content
Post by samxxx » Thu Oct 13, 2022 2:46 pm
Code: Select all
EnableExplicit EnableGraphicalConsole(#True) Global Aname.s OpenConsole() PrintN(" ") PrintN (" Enter your name?") Aname.s = Input() ClearConsole() ;-------------------------- PrintN (" Enter your age?") b = Val(Input()) Input()
Post by Olli » Thu Oct 13, 2022 2:58 pm
EnableExplicit EnableGraphicalConsole(#True) Define Aname.s Define Age.i OpenConsole() PrintN(" ") PrintN (" Enter your name?") Aname = Input() ClearConsole() ;-------------------------- Print(" Enter your age?") Age = Val(Input()) PrintN("So " + Aname + " is " + Str(Age) + " year(s) old.") Input()
Return to “Coding Questions”