Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

ntegers numSalads and myMoney are read from input. A salad costs 4 dollars. If numSalads is less than 6 , then output Please purchase at

ntegers numSalads and myMoney are read from input. A salad costs 4 dollars.
If numSalads is less than 6, then output "Please purchase at least 6."
If numSalads is greater than or equal to 6, then declare and initialize int variable totalCost with the product of numSalads and 4.
If totalCost is less than or equal to myMoney, then output "Successful purchase!"
Otherwise, output "Not all salads purchased."
If myMoney is greater than or equal to 4, then output "At least one item was purchased."
If numSalads is greater than 27, then output "Restocking soon."import java.util.Scanner;
public class SaladPurchases {
public static void main (String[] args){
Scanner scnr = new Scanner(System.in);
int numSalads;
int myMoney;
numSalads = scnr.nextInt();
myMoney = scnr.nextInt();
}
}

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

Understanding Databases Concepts And Practice

Authors: Suzanne W Dietrich

1st Edition

1119827949, 9781119827948

More Books

Students also viewed these Databases questions

Question

Be able to cite the advantages of arbitration

Answered: 1 week ago