Question: Write a statement that increases numPeople by 5. Ex: If numPeople is initially 10, the output is: There are 15 people. import java.util.Scanner; public class
Write a statement that increases numPeople by 5. Ex: If numPeople is initially 10, the output is: There are 15 people.
import java.util.Scanner;
public class AssigningNumberToVariable { public static void main (String [] args) { int numPeople;
numPeople = 10;
/* Your solution goes here */
System.out.print("There are "); System.out.print(numPeople); System.out.println(" people."); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
