Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Help with simple TI-84 program?

I have a TI-84 SE and I want to make a simple program that prints something on the main screen. I need to program it from the calculator. Please help with this simple code.

Update:

Alno M: That doesn't work. Keep in mind I am writing this code on the calculator under "prmg" then "new".

Update 2:

Hi, all I wanted to do was print a tictactoe board from I's and -'s. I can now do that but it then says done at the bottom instead of letting me type in the tictactoe board.

3 Answers

Relevance
  • 1 decade ago
    Favorite Answer

    Chris is right on the money; both Disp and Output( do what you want to do.

    Disp requires one argument minimum. Doing:

    :Disp "HI"

    ...will print the string "HI" on the next available line. You could also do:

    :Disp "HI",7,A

    ...which will print the string "HI" on the next line, the number 7 on the next one, and then the value of variable A on the one after that.

    Output( requires three arguments, as follows:

    Output(row,column,value)

    So if you wanted it to print "text" on the third row, fourth column, doing this will work:

    :Output(3,4,"text")

    The great thing about Output( is that it wraps text. So if the value is too long to fit on the screen, it'll automatically overflow onto the next line. Disp will just truncate the string with ellipses if it's too long.

    Here's where the two commands are located:

    Disp: [Prgm] > I/O > 3:Disp

    Output(: [Prgm] > I/O > 6:Output(

  • ?
    Lv 4
    1 decade ago

    use Disp or Output

    Disp "This is some text"

    - will print on the next line tot he right

    Output(3,1,"Different Text

    - will print the text on line 3 beginning in the first column

    More on TI BASIC can be found in your manual or varios online sources.

    Check this out::

    http://www.ticalc.org/programming/columns/

  • 1 decade ago

    10 print "this is a computer"

    20 goto 10

    run

Still have questions? Get your answers by asking now.