A variable like userNum can store a value like an integer. Extend the given program to print userNum values as indicated. (Submit for 2 points). (1) Output the user's input. Enter integer: 4 You...


A variable like userNum can store a value like an integer. Extend the given program to print userNum values as indicated. (Submit for 2<br>points).<br>(1) Output the user's input.<br>Enter integer: 4<br>You entered: 4<br>(2) Extend to output the input squared and cubed. Hint: Compute squared as userNum * userNum. (Submit for 2 points, so 4 points total).<br>Enter integer: 4<br>You entered: 4<br>4 squared is 16<br>And 4 cub<br>is<br>64!!<br>(3) Extend to get a second user input into userNum2. Output sum and product. (Submit for 1 point, so 5 points total).<br>Enter integer: 4<br>You entered: 4<br>4 squared is 16<br>And 4 cubed is 64 !!<br>Enter another integer: 5<br>4 + 5 is 9<br>4 * 5 is 20<br>283902.1980792.goazgy7<br>LAB<br>1.16.1: Basic output with variables (Java)<br>0/5<br>АCTIVITY<br>OutputWithVars.java<br>Load default template.<br>1 import java.util.Scanner;<br>2<br>3 public class OutputwithVars {<br>public static void main(String[] args) {<br>Scanner scnr = new Scanner(System.in);<br>int userNum = 0;<br>4<br>System.out.println(

Extracted text: A variable like userNum can store a value like an integer. Extend the given program to print userNum values as indicated. (Submit for 2 points). (1) Output the user's input. Enter integer: 4 You entered: 4 (2) Extend to output the input squared and cubed. Hint: Compute squared as userNum * userNum. (Submit for 2 points, so 4 points total). Enter integer: 4 You entered: 4 4 squared is 16 And 4 cub is 64!! (3) Extend to get a second user input into userNum2. Output sum and product. (Submit for 1 point, so 5 points total). Enter integer: 4 You entered: 4 4 squared is 16 And 4 cubed is 64 !! Enter another integer: 5 4 + 5 is 9 4 * 5 is 20 283902.1980792.goazgy7 LAB 1.16.1: Basic output with variables (Java) 0/5 АCTIVITY OutputWithVars.java Load default template. 1 import java.util.Scanner; 2 3 public class OutputwithVars { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int userNum = 0; 4 System.out.println("Enter integer: "); userNum = scnr.nextInt(); 10 11 return; } 12 13 )

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here