Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

import java.util.Scanner; public class TableOrder { public static void main ( String [ ] args ) { Scanner scanner = new Scanner ( System .

import java.util.Scanner;
public class TableOrder {
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
// Read the number of parties
int n = scanner.nextInt();
// Initialize an array to store the count of each table size
int[] tables = new int[4]; // Sizes: 2,4,6,8
// Process each party size and update the table count
for (int i =0; i < n; i++){
int group = scanner.nextInt();
int idx =(group -1)/2;
tables[idx]++;
}
// Output the result in ascending order of popularity
for (int i =0; i <4; i++){
int size =2*(i +1);
System.out.println(size +": "+ tables[i]);
}
}
}

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

Recommended Textbook for

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions

Question

List the four parts of the self-motivation model.

Answered: 1 week ago

Question

Identify the four parts of the model for writing objectives.

Answered: 1 week ago