Question: IT - 1 4 5 Lab Activities: 1 . 3 7 Basic output with variables ( Java ) A variable like userNum can store a
IT Lab Activities: Basic output with variables Java A variable like userNum can store a value like an integer. Extend the given program to print userNum values as indicated. Submit for
points
Output the user's input.
Enter integer:
You entered:
Extend to output the input squared and cubed. Hint: Compute squared as userNum userNum. Submit for points, so points total
Enter integer:
You entered:
mathrm squared is
And cubed is
Extend to get a second user input into userNum Output sum and product. Submit for point, so points total
Enter integer:
You entered:
mathrm squared is
And cubed is
Enter another integer:
mathrm is
mathrm is import java.util.Scanner;
public class OutputWithVars
public static void mainString args
Scanner scnr new Scanner
System.in;
int userNum ;
System.out.printlnEnter integer: ;
userNum scnrnextInt;
return;
This zyLab activity is intended for students to prepare for a larger programming assignment. Warm up exercises are typically simpler and worth fewer points than a full programming assignment. Warm up exercises are ideally suited for an inperson scheduled lab meeting or as selfpractice. The last section provides a full programming assignment.
A variable like userNum can store a value like an integer. Extend the given program to print userNum values as indicated. Submit for points
Output the user's input.
Enter integer:
You entered:
Extend to output the input squared and cubed. Hint: Compute squared as userNum userNum. Submit for points, so points total
Enter integer:
You entered:
squared is
And cubed is
Extend to get a second user input into userNum Output sum and product. Submit for point, so points total
Enter integer:
You entered:
squared is
And cubed is
Enter another integer:
is
is
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
