Advertisement
Josif_tepe

Untitled

May 22nd, 2024
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int i, a;
  7.     a = 0;
  8.     for(i = 10; i >= 0; i = i - 2)
  9.         a = a + i;
  10.     cout << a << endl;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement