Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1 . 3 7 Basic output with variables ( Java ) This zyLab activity is intended for students to prepare for a larger programming assignment.
Basic output with variables Java
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
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;
Run your program as often as you'd like, before submitting for grading. Below, type any needed
input values in the first box, then click Run program and observe the program's output in the
second box.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started