Advertisement
Josif_tepe

Untitled

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