Advertisement
Spocoman

Charity Campaign

Sep 16th, 2023
715
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.     int days, cookers, cakes, waffles, pancakes;
  8.     cin >> days >> cookers >> cakes >> waffles >> pancakes;
  9.  
  10.     double sum = days * cookers * ((cakes * 45) + (waffles * 5.80) + (pancakes * 3.20));
  11.    
  12.     printf("%.2f\n", sum - sum / 8);
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement