Question: In Java PLEASE! Integers numPears and numDollars are read from input. A pear costs 2 dollars. If numPears is less than 4 , output Not

In Java PLEASE!
Integers numPears and numDollars are read from input. A pear costs 2 dollars.
If numPears is less than 4, output "Not enough pears."
If numPears is greater than or equal to 4, then declare and initialize int variable totalCost with the product of numPears and
If totalCost is less than or equal to numDollars, output "Approved transaction."
Otherwise, output "Not enough money to buy all."
If numDollars is greater than or equal to 2, output "At least one item was purchased."
If numPears is greater than 25, output "Now out of stock." Otherwise, output "Item still in stock."
End with a newline.
Ex: If the input is 1044, then the output is:
Approved transaction.
At least one item was purchased.
Item still in stock.
import java.util.Scanner;
public class PearPurchases {
public static void main (String[] args){
Scanner scnr = new Scanner(
System.in);
int numPears;
int numDollars;
numPears = scnr. nextInt ();
numDollars = scnr. nextInt ();
Y** Your code goes here */
}
}
 In Java PLEASE! Integers numPears and numDollars are read from input.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!