TI-BASIC Wiki
Advertisement
:Output(row,column,String)
:Output(row,column,value)

Prints the specified text starting at the indicated line and space on the Calculator Screen. The text will continue to the left, and wrap down if the text to be displayed or the variable continues off the screen. For example, Output(1,8,"1234567890123456") will start in the middle of the first line, and continue until the middle of the second line. (Can display a number found by the program stored as a variable.) Eg.

Prompt X
Prompt Y
X*Y STO> A
Output(4,1,A)

Location[]

  • PRGM
  • I/O
  • 6:Output(

Example[]

:ClrHome
:Output(1,1,"HELLO")

This program will print the word HELLO on the first line at the first space.

Advertisement