Java Methods Write a program that accepts three strings: first name, last name, age, and nationality. Create an object of the class Person and assign the inputs to their respective attributes. In the class, create a method greeting() that prints the attributes. Inputs 1. Input Cody Chum 20 Filipino   Sample Output Enter first name: Cody Enter last name: Chum Enter age: 20 Enter nationality: Filipino   Hello, I am Cody Chum, 20 years old and a Filipino!

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter12: Adding Functionality To Your Classes
Section12.2: Providing Class Conversion Capabilities
Problem 2E
icon
Related questions
Question

Java Methods

Write a program that accepts three strings: first name, last name, age, and nationality. Create an object of the class Person and assign the inputs to their respective attributes. In the class, create a method greeting() that prints the attributes.

Inputs

1. Input

Cody Chum 20 Filipino

 

Sample Output

Enter first name: Cody
Enter last name: Chum
Enter age: 20
Enter nationality: Filipino
 
Hello, I am Cody Chum, 20 years old and a Filipino!
1. Methods Practice I
by CodeChum Admin
Write a program that accepts three strings: first name, last name, age,
and nationality. Create an object of the class Person and assign the
inputs to their respective attributes. In the class, create a
method greeting() that prints the attributes.
Inputs
1. Input
Cody
Chum
20
Filipino
Sample Output
Enter first name: Cody
Enter last name: Chum
Enter age: 20
Enter nationality: Filipino
Hello, I am Cody Chum, 20 years old and a Filipino!
Main.java
1 import java.util.Scanner;
2
3 v class Person (
4
5
D
7
public String firstName;
public String lastName;
public int age;
public String nationality;
8}
9
10 class Main {
11,
12
13
14 }
public static void main(String[] args) {
}
8
Java
E
Test Cases
Constraints
O Constraint 1
The code must have a class called Person.
O Constraint 2
The code must have a method called greeting()
Test Cases
O Test Case 1
Your Output
No Output
Expected Output
Enter first name: Cody
Enter last name: Chum
Enter age: 20
Enter nationality: Filipino
Hello, I am Cody Chum, 20 years old and a Filipino!
Transcribed Image Text:1. Methods Practice I by CodeChum Admin Write a program that accepts three strings: first name, last name, age, and nationality. Create an object of the class Person and assign the inputs to their respective attributes. In the class, create a method greeting() that prints the attributes. Inputs 1. Input Cody Chum 20 Filipino Sample Output Enter first name: Cody Enter last name: Chum Enter age: 20 Enter nationality: Filipino Hello, I am Cody Chum, 20 years old and a Filipino! Main.java 1 import java.util.Scanner; 2 3 v class Person ( 4 5 D 7 public String firstName; public String lastName; public int age; public String nationality; 8} 9 10 class Main { 11, 12 13 14 } public static void main(String[] args) { } 8 Java E Test Cases Constraints O Constraint 1 The code must have a class called Person. O Constraint 2 The code must have a method called greeting() Test Cases O Test Case 1 Your Output No Output Expected Output Enter first name: Cody Enter last name: Chum Enter age: 20 Enter nationality: Filipino Hello, I am Cody Chum, 20 years old and a Filipino!
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
void method
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr