Guest User

Untitled

a guest
Feb 14th, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int x = 1;
  7.     int number;
  8.     int total = 0;
  9.  
  10.  
  11.     while(x <= 5){
  12.         cin >> number;
  13.         total = total + number;
  14.         x++;
  15.     }
  16.     cout << "Your total is " << total << endl;
  17.  
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment