(1) Prompt the user to input an integer, a double, a character, and a string, storing each into separate variables. Then, output those four values on a single line separated by a space. (2 pts) Note: This zyLab outputs a newline after each user-input prompt. For convenience in the examples below, the user's input value is shown on the next line, but such values don't actually appear as output when the program runs. Use next() to read String, not nextLine(). Enter integer: 99 Enter double: 3.77 Enter character: Enter string: Howdy 99 3.77 z Howdy (2) Extend to also output in reverse. (1 pt) Enter integer: 99 Enter double: 3.77 Enter character: z Enter string: Howdy 99 3.77 z Howdy Howdy z 3.77 99 (3) Extend to cast the double to an integer, and output that integer. (2 pts) Enter integer: 99 Enter double: 3.77 Enter character: Enter string: Howdy 99 3.77 z Howdy Howdy z 3.77 99 3.77 cast to an integer is 3 1 import java.util.Scanner; 2 3 public class BasicInput 4 5 6 7 8 9 10 11 12 13. 14 15 16 17 18 19 public static void main(String[] args) { Scanner scnr new Scanner(System.in); int userint; double userDouble; // FIXME Define char and string variables similarly System.out.println("Enter integer:"); userInt scnr.nextInt(); // FIXME (1): Finish reading other items into variables, then output the four values on a single Line separated // FIXME (2): Output the four values in reverse // FIXME (3): Cast the double to an integer, and output that integer }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter14: Exception Handling
Section: Chapter Questions
Problem 11SA
icon
Related questions
Question

Java - Variables, input, and casting

(1) Prompt the user to input an integer, a double, a character, and a string, storing each into separate variables. Then, output those four
values on a single line separated by a space. (2 pts)
Note: This zyLab outputs a newline after each user-input prompt. For convenience in the examples below, the user's input value is shown on
the next line, but such values don't actually appear as output when the program runs. Use next() to read String, not nextLine().
Enter integer:
99
Enter double:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
(2) Extend to also output in reverse. (1 pt)
Enter integer:
99
Enter double:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
Howdy z 3.77 99
(3) Extend to cast the double to an integer, and output that integer. (2 pts)
Enter integer:
99
Enter double:
3.77
Enter character:
z
Enter string:
Howdy
99 3.77 z Howdy
Howdy z 3.77 99
3.77 cast to an integer is 3
1 import java.util.Scanner;
2
3 public class BasicInput
4
5
7
8
9
10
11
12
13
14
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
15
16
17
18 }
19}
int userInt;
double userDouble;
// FIXME Define char and string variables similarly
System.out.println("Enter integer: ");
userInt= scnr.nextInt ();
// FIXME (1): Finish reading other items into variables, then output the four values on a single Line separated
// FIXME (2): Output the four values in reverse
// FIXME (3): Cast the double to an integer, and output that integer
Transcribed Image Text:(1) Prompt the user to input an integer, a double, a character, and a string, storing each into separate variables. Then, output those four values on a single line separated by a space. (2 pts) Note: This zyLab outputs a newline after each user-input prompt. For convenience in the examples below, the user's input value is shown on the next line, but such values don't actually appear as output when the program runs. Use next() to read String, not nextLine(). Enter integer: 99 Enter double: 3.77 Enter character: z Enter string: Howdy 99 3.77 z Howdy (2) Extend to also output in reverse. (1 pt) Enter integer: 99 Enter double: 3.77 Enter character: z Enter string: Howdy 99 3.77 z Howdy Howdy z 3.77 99 (3) Extend to cast the double to an integer, and output that integer. (2 pts) Enter integer: 99 Enter double: 3.77 Enter character: z Enter string: Howdy 99 3.77 z Howdy Howdy z 3.77 99 3.77 cast to an integer is 3 1 import java.util.Scanner; 2 3 public class BasicInput 4 5 7 8 9 10 11 12 13 14 public static void main(String[] args) { Scanner scnr = new Scanner(System.in); 15 16 17 18 } 19} int userInt; double userDouble; // FIXME Define char and string variables similarly System.out.println("Enter integer: "); userInt= scnr.nextInt (); // FIXME (1): Finish reading other items into variables, then output the four values on a single Line separated // FIXME (2): Output the four values in reverse // FIXME (3): Cast the double to an integer, and output that integer
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Datatypes
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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning