Question: Assume the following lines are a part of the main method. You must show two executions - one successful and one failure Use input values
Assume the following lines are a part of the main method. You must show two executions - one successful and one failure Use input values that result in a success and in a failure. Your answer must include everything that a user would see on the console.
Scanner in = new Scanner(System.in);
final int val = 4;
System.out.println("Enter a number");
int num = in.nextInt();
// val = 6;
System.out.print(num + "" + num * val + "" + num % val * val);
in.close();
Now uncomment the line where val is reset to 6. What would the effect be?
Step by Step Solution
There are 3 Steps involved in it
Solution 1 Input that results in success For the programs successful compilation input must be of in... View full answer
Get step-by-step solutions from verified subject matter experts
