Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

For each problem, use java scripting to print the problem number followed by whatever output the task requires. Output a blank line between difficulties.

              

  1.   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.

 

Expert Solution
Check Mark
Step 1

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);
 }
}

Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education