Ask Question
29 May, 19:55

Type two statements. The first reads user input into person_name. The second reads user input into person_age. Below is a sample output for the given program if the user's input is: Amy 4

+1
Answers (1)
  1. 29 May, 23:30
    0
    How to answer this question really depends on the programming language.

    In Delphi for example, you could have two text boxes, one for person_name and one for person_age:

    person_name : = textbox1. text;

    person_age : = StrToInt (textbox2. text);

    In Delphi:

    person_name=input ('user input into person_name') person_age=int (input ('user input into person_age'))
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Type two statements. The first reads user input into person_name. The second reads user input into person_age. Below is a sample output for ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers