|  | 
|  | 
| back to board | What's wrong? #include <iostream>
 using namespace std;
 
 int main()
 {
 
 double k;
 while(cin >> k) {
 cout << fixed << setprecision(4) << sqrt(k) << endl;
 }
 
 }
Re: What's wrong? Posted by Hobo99  9 Dec 2023 04:33I think the solution is supposed to start from the last number | 
 | 
|