#hELP

1 messages · Page 1 of 1 (latest)

summer ridge
#

Write a program that plays a word game with the user. The program should ask the user to enter the following:
• His or her name
• His or her age
• The name of a city
• The name of a college
• A profession
• A type of animal
• A pet’s name
After the user has entered these items, the program should display the following story, inserting the user’s input into the appropriate locations:

There once was a person named NAME who lived in CITY. At the age of AGE, NAME went to college at COLLEGE. NAME graduated and went to work as a PROFESSION. Then, NAME adopted a(n) ANIMAL named PETNAME. They both lived happily ever after!

tranquil scaffoldBOT
#

Hey, @summer ridge!
Please remember to /close this post once your question has been answered!

worn bolt
#
// take inputs here 
Scanner scnr = new Scanner(System.in);
System.out.println("Name: ");
String NAME = scnr.next();

System.out.println("Age: ");
int AGE = scnr.nextInt();

System.out.println("City: ");
String CITY = scnr.next();

System.out.println("College: ");
String COLLEGE = scnr.next();

System.out.println("Profession: ");
String PROFESSION = scnr.next();

System.out.println("Animal: ");
String ANIMAL = scnr.next();

System.out.println("Pet's name: ");
String PETNAME = scnr.next();

scnr.close();
System.out.printf("There once was a person named %s who lived in %s. At the age of %d, %s went to college at %s. %s graduated and went to work as a %s. Then, %s adopted a(n) %s named %s. They both lived happily ever after!, NAME, CITY, AGE, NAME, COLLEGE, NAME, PROFESSION, NAME, ANIMAL, PETNAME");
#

You're wecome, now do your own work.