Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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.
import java.util.Scanner;
public class AssigningNumberToVariable {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int numPeople;
numPeople = scnr.nextInt();
/* 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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Discuss the various types of policies ?

Answered: 1 week ago

Question

Briefly explain the various types of leadership ?

Answered: 1 week ago

Question

Explain the need for and importance of co-ordination?

Answered: 1 week ago

Question

Explain the contribution of Peter F. Drucker to Management .

Answered: 1 week ago

Question

Identify the types of informal reports.

Answered: 1 week ago

Question

Write messages that are used for the various stages of collection.

Answered: 1 week ago