Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int x = 1;
- int number;
- int total = 0;
- while(x <= 5){
- cin >> number;
- total = total + number;
- x++;
- }
- cout << "Your total is " << total << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment