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.
5. Characters In, Characters Out
Answer:
The characters '1' , '2' , '3' , and '4' .
Characters In, Characters Out
The keyboard sends character data to the computer, even when the characters look like numbers. And the program sends characters to the monitor, even when it has calculated a numerical result. (Actually, characters are not sent directly to the monitor. They are sent to the graphics card which converts them into a video signal which is displayed on the monitor.)
If your program does arithmetic, the input characters must be converted into one of the primitive numeric data types. This is done using a Scanner
object. Then a result is calculated using arithmetic with the numeric
data. The result must then be converted into character data before it is sent to the monitor. This is done using a method of System.out
.
Question 5:
Have you already used
System.out
?