fork(1) download
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int losy[3];
  9. for(int i=0;i<3;cin>>losy[i++]) cout<<"Podaj liczbe: ";
  10. srand(time(0));
  11. int pos=rand()%3;
  12. for(int i=0;i<3;++i) if(i!=pos) cout<<losy[i]<<endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 3344KB
stdin
9
8
7
stdout
Podaj liczbe: Podaj liczbe: Podaj liczbe: 8
7