User input/Text: Difference between revisions

Content added Content deleted
m (move REXX to proper position)
Line 1,087: Line 1,087:
number: 75000
number: 75000
Thank you. Your string was 'Slert...'.</pre>
Thank you. Your string was 'Slert...'.</pre>

=={{header|REXX}}==
<lang rexx>/*REXX program gets a string and the number 75000 from the console. */

say 'Please enter a text string:' /*show prompt for a text string. */
parse pull userString /*get the user text and store it.*/

do until userNumber=75000 /*repeat until correct.*/
say /*display a blank line.*/
say 'Please enter the number 75000' /*show the nice prompt.*/
parse pull userNumber /*get the user text. */
end /*until*/ /*now, check if it's OK*/
/*stick a fork in it, we're done.*/</lang>


=={{header|Retro}}==
=={{header|Retro}}==
Line 1,117: Line 1,104:
puts "String = #{s}"
puts "String = #{s}"
puts "Integer = #{i}"</lang>
puts "Integer = #{i}"</lang>

=={{header|REXX}}==
<lang rexx>/*REXX program gets a string and the number 75000 from the console. */

say 'Please enter a text string:' /*show prompt for a text string. */
parse pull userString /*get the user text and store it.*/

do until userNumber=75000 /*repeat until correct.*/
say /*display a blank line.*/
say 'Please enter the number 75000' /*show the nice prompt.*/
parse pull userNumber /*get the user text. */
end /*until*/ /*now, check if it's OK*/

/*stick a fork in it, we're done.*/</lang>


=={{header|Scala}}==
=={{header|Scala}}==