Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Integers numBananas and cash are read from input. A banana costs 3 dollars. If numBananas is less than 5 , then output Not enough bananas.

Integers numBananas and cash are read from input. A banana costs 3 dollars.
If numBananas is less than 5, then output "Not enough bananas."
If numBananas is greater than or equal to 5, then declare and initialize int variable totalCost with the product of numBananas and 3.
If totalCost is less than or equal to cash, then output "Bananas successfully purchased."
Otherwise, output "Need more money to purchase all."
If numBananas is greater than 38, then output "Restocking soon."
Otherwise, output "Item still in stock."
End each output with a newline.import java.util.Scanner;
public class Transaction {
public static void main (String[] args){
Scanner scnr = new Scanner(System.in);
int numBananas;
int cash;
numBananas = scnr.nextInt();
cash = scnr.nextInt();
/* Your code goes here */
}
}

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

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

12th edition

133544613, 978-0133544619

More Books

Students also viewed these Databases questions

Question

=+5 How does HRM relate to efforts to increase innovation?

Answered: 1 week ago