0_0_29491552_29160.cpp: In function 'double sqr(double)':
0_0_29491552_29160.cpp:9:2: error: 'nbsp' was not declared in this scope
return a*a;
^
0_0_29491552_29160.cpp: In function 'bool check(double, double, double)':
0_0_29491552_29160.cpp:15:2: error: 'nbsp' was not declared in this scope
if(fabs(sqr(x-ax)+sqr(y-ay)-sqr(r+m1*r1))>eps)return false;
^
0_0_29491552_29160.cpp: In function 'int main()':
0_0_29491552_29160.cpp:22:2: error: 'nbsp' was not declared in this scope
//freopen("input.txt", "r", stdin);
^
0_0_29491552_29160.cpp:44:93: error: continue statement not within a loop
if(fabs(bb*a-aa*b)<eps){printf("NO SOLUTION!\n");continue;}
^
0_0_29491552_29160.cpp:47:93: error: continue statement not within a loop
if(fabs(b*aa-bb*a)<eps){printf("NO SOLUTION!\n");continue;}
^
0_0_29491552_29160.cpp:55:85: error: continue statement not within a loop
if(B*B-4*A*C<0){printf("NO SOLUTION!\n");continue;}
^
0_0_29491552_29160.cpp:56:85: error: continue statement not within a loop
if(fabs(A)<eps){printf("NO SOLUTION!\n");continue;}
^
0_0_29491552_29160.cpp:65:68: error: continue statement not within a loop
continue;
^
0_0_29491552_29160.cpp:75:68: error: continue statement not within a loop
continue;
^
|