How to resolve the algorithm User input/Text step by step in the TI-89 BASIC programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm User input/Text step by step in the TI-89 BASIC programming language

Table of Contents

Problem Statement

Input a string and the integer   75000   from the text console. See also: User input/Graphical

Let's start with the solution:

Step by Step solution about How to resolve the algorithm User input/Text step by step in the TI-89 BASIC programming language

Source code in the ti-89 programming language

Prgm
  InputStr "Enter a string", s
  Loop
    Prompt integer
    If integer ≠ 75000 Then
      Disp "That wasn't 75000."
    Else
      Exit
    EndIf
  EndLoop
EndPrgm

  

You may also check:How to resolve the algorithm Sorting algorithms/Merge sort step by step in the Action! programming language
You may also check:How to resolve the algorithm Same fringe step by step in the Wren programming language
You may also check:How to resolve the algorithm Averages/Mode step by step in the PureBasic programming language
You may also check:How to resolve the algorithm Calendar - for REAL programmers step by step in the Visual Basic .NET programming language
You may also check:How to resolve the algorithm Cramer's rule step by step in the Maxima programming language