How to resolve the algorithm User input/Text step by step in the Smalltalk programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm User input/Text step by step in the Smalltalk 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 Smalltalk programming language

Source code in the smalltalk programming language

'Enter a number: ' display.
a := stdin nextLine asInteger.

'Enter a string: ' display.
b := stdin nextLine.

  

You may also check:How to resolve the algorithm 100 doors step by step in the Commodore BASIC programming language
You may also check:How to resolve the algorithm Sequence of non-squares step by step in the Raku programming language
You may also check:How to resolve the algorithm Compiler/virtual machine interpreter step by step in the J programming language
You may also check:How to resolve the algorithm Amicable pairs step by step in the Pascal programming language
You may also check:How to resolve the algorithm Simple windowed application step by step in the Unicon programming language