fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. const int REPEATS = 1000;
  6.  
  7. int main() {
  8. int matches = 0;
  9. for(int repeat = 0; repeat<REPEATS; repeat++) {
  10. srand(time(NULL));
  11. int x = rand()%1000000;
  12. srand(time(NULL));
  13. int y = rand()%1000000;
  14. if(x==y){ //імовірність цієї події близька до 100%
  15. matches++;
  16. }
  17. }
  18. cout<<"matches: "<<matches<< " P(x==y)=" << double(matches)/REPEATS;
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5268KB
stdin
Standard input is empty
stdout
matches: 1000 P(x==y)=1