Ask Question
15 June, 18:33

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

+5
Answers (1)
  1. 15 June, 18:43
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers