fork(4) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. volatile double x=120;
  5.  
  6. int main()
  7. {
  8. if(x*(1/10.0)!=x/10.0) cout<<"nie jest to dobry sposób"<<endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
nie jest to dobry sposób