Spocoman

Birthday Party

Sep 15th, 2023 (edited)
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     double rent;
  7.     cin >> rent;
  8.  
  9.     double cake = rent / 5,
  10.         drinks = cake * 0.55,
  11.         animator = rent / 3;
  12.    
  13.     cout << rent + cake + drinks + animator << endl;
  14.  
  15.     return 0;
  16. }
Add Comment
Please, Sign In to add comment