Answered step by step
Verified Expert Solution
Question
1 Approved Answer
ITP 120: Java programming 1 Jump to level 1 Integers numCookies and myMoney are read from input. A cookie costs 4 dollars - If numCookies
ITP 120: Java programming 1
Jump to level 1 Integers numCookies and myMoney are read from input. A cookie costs 4 dollars - If numCookies is greater than or equal to 6 , then declare and initialize int variable totalCost with the product of numCookies and 4. If totalCost is less than or equal to myMoney, output "Successful purchaset" Otherwise, output "Need more money to purchase all" - If myMoney is greater than or equal to 4 , output 'At least one item was purchased." - If numCookies is greater than 20, output "Now out of stock' Otherwise, output "item still in stock" End with a newine. Ex. If the input is 645 , then the output is: Successiul purchaset At least one item was purchased. Item still in stock. import jova.util.Sconner; public class Transaction I public static void noin (String args) o Scanner senr = new Scarner(System, in); int mumCookies; int myMoney; - If numCookies is greater than or equal to 6 , then declare and initialize int variable totalCost with the product of numCookies and 4 . If totalCost is less than or equal to myMoney, output "Successful purchase!" Otherwise, output "Need more money to purchase all." If myMoney is greater than or equal to 4 , output "At least one item was purchased: - If numCookies is greater than 20, output "Now out of stock. 'Otherwise, output "item still in stock." End with a newine. Ex. If the input is 645, then the output is: Successful purchase! At least one item was purchased. Item still in stock Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started