Advertisement
josiftepe

Untitled

Sep 28th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std ;
  3.  
  4. int main() {
  5.     int n;
  6.     int sum = 0;
  7.     int vneseni = 0;
  8.     while(cin >> n) {
  9.         sum += n;
  10.         vneseni++;
  11.         if(sum >= 100) {
  12.             break;
  13.         }
  14.     }
  15.     cout << vneseni << endl;
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement