Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- // Declearing variables
- int leash, collar, food, total;
- // taking input
- cout << "Enter the cost of a leash: ";
- cin >> leash;
- cout << "Enter the cost of a collar: ";
- cin >> collar;
- cout << "Enter the cost of a bag of food: ";
- cin >> food;
- // adding three numbers
- total = leash + collar + food;
- // displaying sum
- cout <<"The total amount spent is " << total << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement