Write a program in java that completes the following prompt: You are a fundraising distributor who needs to to pre-sell a limited number of doughnut coupon books. Each buyer can buy as many as 4 coupon books. No more than 100 coupon books can be sold. Implement a program called Fundraiser that prompts the user for the desired number of coupon books and then displays the number of remaining coupon books. Repeat until all coupon books have been sold, and then display the total number of buyers.
Write a program in java that completes the following prompt:
You are a fundraising distributor who needs to to pre-sell a limited number of doughnut coupon books. Each buyer can buy as many as 4 coupon books. No more than 100 coupon books can be sold. Implement a program called Fundraiser that prompts the user for the desired number of coupon books and then displays the number of remaining coupon books. Repeat until all coupon books have been sold, and then display the total number of buyers.
import java.util.Scanner;
class Fundraiser {
public static void main(String args[]){
int buyers_count=0;
int total_coupons_books =100;
Scanner scnr =new Scanner(System.in);
while(total_coupons_books >0)
{
System.out.print("Enter the desired number of coupon books :");
int desired_coupon_books =scnr.nextInt();
if((total_coupons_books-desired_coupon_books)<0){
System.out.println("Limit exceeded only "+total_coupons_books+" are Remain");
continue;
}
if(desired_coupon_books > 4 || desired_coupon_books <0){
System.out.println("Limit exceed enter the number between 0 and 4");
}
else{
total_coupons_books =total_coupons_books-desired_coupon_books;
System.out.println("Remaining number of the coupon books :"+total_coupons_books);
buyers_count++;
}
}
System.out.println("Total number of buyers :"+buyers_count);
}
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps