Question: Write a statement that increases numPeople by 5 . Ex: If numPeople is initially 1 0 , the output is: There are 1 5 people

Write a statement that increases numPeople by 5. Ex: If numPeople is initially 10, the output is: There are 15 people
Note: Our autograder automatically runs your program several times, trying different input values each time to ensure your program works for any values. This program is tested three times, first with the input 10, then with the input 99, and finally with the input 0
See How to Use zyBooks for info on how our automated program grader works.
5309703939280 dorisan
import java.util.scanner;
public class AssigningNumberToVariable {
public static void main(String[] args){
Scanner scnr = new Scanner(System. in);
int numpeople;
numpeople =scnr. nextInt () ;
System.out.print("There are ");
System.out. print (numpeople);
System.out.println(" people.");
}
}
 Write a statement that increases numPeople by 5. Ex: If numPeople

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!