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