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 a, b, s;
  7.    s = 0;
  8.    a = 1;
  9.    while(a <= 4)
  10.    {
  11.     s = s + a;
  12.    }
  13.    cout << s << endl;
  14.  
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement