Java provides a Scanner class to facilitate data input/output. In this section, you will learn about the Scanner class that is used to get input from the user. Java also defines various methods from the Scanner class that can convert user input into appropriate data types before conducting any operation on the data.
16. Another Example
Answer:
Line number 11.
Although your source code is translated from text into bytecodes, and it is the bytecodes that are executed by the Java virtual
machine, the file of bytecodes EchoSquare.class
retains some line number information which is displayed
when your program crashes.
Another Example
Here is another example. It asks the user for two integers which are then added together and the sum written out.
Another Example
import java.util.Scanner; public class AddTwo { public static void main (String[] args) { Scanner scan = new Scanner( System.in ); int first, second, sum ; // declaration of int variables System.out.println("Enter first integer:"); first = scan.nextInt(); // read chars and convert to int System.out.println("Enter second integer:"); second = scan.nextInt(); // read chars and convert to int sum = first + second; // add the two ints, put result in sum System.out.println("The sum of " + first + " plus " + second +" is " + sum ); } } |
Here is a sample run:
Enter first integer:
12
Enter second integer:
-8
The sum of 12 plus -8 is 4
Question 16:
(A slightly hard question: ) explain what happened in the following run of the same program:
Enter first integer: 12 -8 Enter second integer: The sum of 12 plus -8 is 4
It looks like the user did not enter the second integer after the second prompt.