Ask 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 the given program if the user's input is: Amy 4

+5
Answers (1)
  1. 22 June, 10:34
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers