For each problem, use java scripting to print the problem number followed by whatever output the task requires. Output a blank line between difficulties. Suppose an airport shuttle can take 11 passengers. Ask the user how many total passengers there are, and calculate how many shuttles will be needed. Print how many seats are empty after all the passengers are accounted for. For example, if there are 33 passengers, then three shuttles are required with no empty seats. If there are 19 passengers, then two shuttles are needed, and there are three open seats.
For each problem, use java scripting to print the problem number followed by whatever output the task requires. Output a blank line between difficulties.
- Suppose an airport shuttle can take 11 passengers. Ask the user how many total passengers there are, and calculate how many shuttles will be needed. Print how many seats are empty after all the passengers are accounted for. For example, if there are 33 passengers, then three shuttles are required with no empty seats. If there are 19 passengers, then two shuttles are needed, and there are three open seats.
Here we write simple java program to find that:
============================================================================
code:
import java.util.Scanner;
public class abhi {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
System.out.print("Enter total passengers: ");
int n = sc.nextInt(),x=0;
int n2=n;
n = n/11;
n2 = n2-n*11;
if(n2>0) {n++;n2=11-n2;}
System.out.println("Total shuttles: "+n);
System.out.println("Total sheats left: "+n2);
}
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images