Advertisement
PiotrJurek

Zad3

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