Question: First, use scnr . nextInt ( ) to read integer surplusValue from input. Then, read the remaining integers from input into inputValue until - 1
First, use scnrnextInt to read integer surplusValue from input. Then, read the remaining integers from input into inputValue until is read. For each remaining integer read before :
If the integer is nonpositive, output the nonpositive integer followed by is ignored" and a newline.
Otherwise, subtract the positive integer from surplusValue.
Ex: If the input is:
then the output is:
is ignored
The total after subtracting all positive values is
Note: The sentinel value is The value of surplusValue may go negative.
import java.util.Scanner;
public class SurplusValue
public static void mainString args
Scanner scnr new ScannerSystemin;
int inputValue;
int surplusValue;
Your code goes here
System.out.printlnThe total after subtracting all positive values is surplusValue;
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
