fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. long double val=1.0/3;
  7. if(3*val!=1) cout<<"1/3 nie istnieje"<<endl;
  8. return 0;
  9. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
1/3 nie istnieje