Немога да намеря грешката ..
https://pastebin.com/6SXFcgrH?fbclid=IwAR1XbI74r5j7pPB0E8HB5hz0qn6kiVFIeGOm00FDfEEhE2t9n81GIIycwXI
import java.util.Scanner;
public class CharityCampaign {
public static void main (String[] args){
Scanner scanner = new Scanner(System.in);
int days = Integer.parseInt(scanner.nextLine());
int bakers = Integer.parseInt(scanner.nextLine());
int cakes = Integer.parseInt(scanner.nextLine());
int waffles = Integer.parseInt(scanner.nextLine());
int pancakes = Integer.parseInt(scanner.nextLine());
double cakesPrice = cakes * 45 ;
double wafflesPrice = waffles* 5.80 ;
double pancakesPrice = pancakes * 3.20;
double pricePerDayByOne = cakesPrice + wafflesPrice + pancakesPrice;
double pricePerDayByAll = pricePerDayByOne * bakers ;
double totalPrice = pricePerDayByAll*days ;
double expenses = totalPrice * 7/8 ;
double finalPrice = totalPrice - expenses ;
System.out.printf("%.2f",finalPrice);
}