Advertisement
WiktoriaRatajczyk

Zadanie3

Apr 16th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. using namespace std;
  6.  
  7. int main(){
  8.  
  9.     srand(time(0));
  10.     int s=0;
  11.  
  12.     for(int i=0;i<100;++i)
  13.         s=s+10+rand()%11;
  14.  
  15.     cout<<s<<endl;
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement