
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 nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

- In Python, Solve the locker riddle which reads as follows:Imagine 100 lockers numbered 1 to 100 with 100 students lined up in front of those 100lockers:The first student opens every locker.The second student closes every 2nd locker.The 3rd student changes every 3rd locker; if it’s closed, she opens it; if it’s open, she closes it.The 4th student changes every fourth locker (e.g., 4th, 8th, etc.).The 5th student changes every 5th locker (e.g., 5th, 10th, etc.).That same pattern continues for all 100 students. Which lockers are left open after all 100 students have walked the rowof lockers?arrow_forwardWrite a program in java that completes the following prompt: You are a fundraising distributor who needs to to pre-sell a limited number of doughnut coupon books. Each buyer can buy as many as 4 coupon books. No more than 100 coupon books can be sold. Implement a program called Fundraiser that prompts the user for the desired number of coupon books and then displays the number of remaining coupon books. Repeat until all coupon books have been sold, and then display the total number of buyers.arrow_forwardWrite a program to ask the user to enter "how many quizzes?" he/she has entered in a lecture. The program will ask the grade results of the number of quizzes entered. The program will show the quiz results and the average of the quizzes as an output. As an extra challenge, display the maximum quiz result as well. How many quizzes?6 Enter the grade of Enter the grade of Enter the grade of Enter the grade of Enter the grade of quiz 5 : 30 Enter the grade of quiz 6: 12 Avarage of quizzes: 49 Maximum of quizzes: 95 quiz 1: 30 quiz 2 : 95 quiz 3 : 88 quiz 4 : 52arrow_forward
- For each problem, use java scripting to print the problem number followed by whatever output the task requires. Output a blank line between problems. Ask the user for 4 integer amounts:• Number of quarters• Number of dimes• Number of nickels• Number of penniesOutput the value of all the coins together. For example, if the input is 3 quarters, 2 dimes, 3 nickels, and 2 pennies, the output is $1.12arrow_forwardYour team was asked to program a self-driving car that reaches its destination with minimum travel time. Write an algorithm for this car to choose from two possible road trips. You will calculate the travel time of each trip based on the car current speed and the distance to the target destination. Assume that both distances and car speed are givenarrow_forwardIn Java.arrow_forward
- Your team was asked to program a self-driving car that reaches its destination with minimum travel time. Write an algorithm for this car to choose from two possible road trips. You will calculate the travel time of each trip based on the car's current speed and the distance to the target destination. Assume that both distances and car speed are given. The programming language I'm using is Java. So, it'll be appreciated if the solution was in Java Thanksarrow_forwardImplement a python version of the game Hangman in which a player attempts to guess a secret word one letter at a time. Normally Hangman is a two-player game but in your version the user will play three rounds against the computer. Use the following as the secret word in each round: 1. “APPLE”2. “OBVIOUS”3. “XYLOPHONE” Here are the steps to follow in each round: Print the secret word with each letter replaced with the underscore character, “_” Prompt the user to enter a letter or word using the following message, “Enter a letter or word: ”. If the user enters a single letter, check if that letter is in the secret word (case-insensitive). The user can make up to 6 letter guesses in a round. If the user guesses a letter they have already guessed, print the message “You've already guessed that letter!” and don’t count it as one of their 6 guesses. Go straight to step 6. If the user enters a word, check if the word matches the secret word (case-insensitive). Word guesses should not…arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





