bal.cpp: In function 'int main()':
bal.cpp:17:18: error: 'setprecision' was not declared in this scope
17 | cout<<fixed<<setprecision(3);
| ^~~~~~~~~~~~
bal.cpp:18:11: error: 'arr' was not declared in this scope
18 | cout<<arr[0]<<endl;
| ^~~
bal.cpp:22:27: error: expected ';' before 'j'
22 | for(int j=i-1;j>=0 j--) {
| ^~
| ;
bal.cpp:23:22: error: 'Pow' was not declared in this scope; did you mean 'pow'?
23 | double p=Pow(coords[i]-coords[j],2)/(4*radius[j]);
| ^~~
| pow
bal.cpp:23:58: error: invalid types 'double[int]' for array subscript
23 | double p=Pow(coords[i]-coords[j],2)/(4*radius[j]);
| ^
bal.cpp:28:15: error: invalid types 'double[int]' for array subscript
28 | radius[i]=radius;
| ^
bal.cpp:30:1: error: expected '}' at end of input
30 | }
| ^
bal.cpp:7:12: note: to match this '{'
7 | int main() {
| ^