225k views
1 vote
Write a Java program that assigns your name to one variable and some other numerical value you want to share to another variable (e.g. age, number of pets, number of children, etc.). Then print a greeting along with the value of the name variable to the screen on one line and a message that uses the other variable with numerical value to another line.

For example, my program would be:

Hello class, my name is: Professor Williams
I have lived in 5 states

Submit your program as an attached .java file and post a screenshot to show that you have been able to successfully run that program. Make sure you submission adheres to the SubmissionRequirements document.

User Arda
by
7.2k points

1 Answer

3 votes

Final answer:

A simple Java program is provided that assigns a name and a numerical value to variables, then prints a personalized greeting and numerical value in the console.

Step-by-step explanation:

Here's a simple Java program that assigns a name to a variable and a numerical value to another variable, then prints out a greeting using those variables:

public class Greeting {
public static void main(String[] args) {
String name = "Alice"; // Replace with your name
int age = 25; // Replace with a numerical value important to you

// Print greeting and name on one line
System.out.println("Hello class, my name is: " + name);
// Print message using the numerical value on the next line
System.out.println("I am " + age + " years old.");
}
}

Save this code in a file named Greeting.java, compile it using javac Greeting.java, and run it using java Greeting. Take a screenshot of your terminal or IDE to show that the program ran successfully.

User Sehael
by
6.7k points