Use of {0} and comments Learn programming Java

Lesson:

First contact with Java


Exercise:

Use of {0} and comments


Objetive:

Write a java program to ask the user for three numbers and display their multiplication. The first line must be a comment with your name and surname. It MUST look as follows:

// Your Name and Surname
Enter the first number to multiply:
12
Enter the second number to multiply:
23
Enter the third number to multiply:
2


Code:

import java.util.*;
public class Main
{
	public static void main(String[] args)
	{
		int number1, number2, number3;
		System.out.print("Enter the first number to multiply: ");
		number1 = Integer.parseInt(new Scanner(System.in).nextLine());
		System.out.print("Enter the second number to multiply: ");
		number2 = Integer.parseInt(new Scanner(System.in).nextLine());
		System.out.print("Enter the third number to multiply: ");
		number3 = Integer.parseInt(new Scanner(System.in).nextLine());
		int result = number1 * number2 * number3;
		System.out.printf("Result: %1$s x %2$s x %3$s = %4$s" + "\r\n", number1, number2, number3, result);
	}
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.