Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

import java.util.Scanner;
public class FurnitureDetails {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int numChairs;
int numTables;
int totalFurniture;
numChairs = scnr.nextInt();
numTables = scnr.nextInt();
/* Your code goes here */
System.out.println(numChairs +" chairs");
System.out.println(numTables +" tables");
System.out.println(totalFurniture +" total");
}
}
numChairs and numTables are read from input representing the number of chairs and tables at the classroom, respectively. The classroom then receives 5 additional chairs and 6 additional tables. Write statements to update numChairs and numTables. Then, assign the variable totalFurniture with the total number of chairs and tables.

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

More Books

Students also viewed these Databases questions

Question

2. Identify the purpose of your speech

Answered: 1 week ago