Explore Connect Documentation
Snippets
1
7
8
9
10
11
12
13
// {
int main() {
  cout << (sqrt(3) * sqrt(3) - 3) << endl
       << (sqrt(3) * sqrt(3) == 3) << endl
       << (fabs(sqrt(3) * sqrt(3) - 3) < 0.0000001) << endl;
}
Enter to Rename, Shift+Enter to Preview