Guest User

Untitled

a guest
Jan 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4. int main () {
  5. cout <<sqrt(10)*sqrt(10)<<endl;
  6. if (sqrt(10)*sqrt(10)==10)
  7. cout<<"True";
  8. else
  9. cout<<"False";
  10. return 0;
  11. }
Add Comment
Please, Sign In to add comment