Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int a, b, s;
- a = 3; s = 0;
- do
- {
- s = s + a;
- a++;
- } while(a < 3);
- cout << s << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement