|
|
back to boardShow all messages Hide all messages#include <iostream> #include <cmath> #include <iomanip> using namespace std; int main () { long long n; while (cin>>n) { cout<<setprecision(4)<<fixed<<sqrt(n)<<endl; } return 0; } Edited by author 12.11.2017 17:07 we have to print in reverse order. Тяжело Edited by author 12.01.2022 09:52 here you have to print the answer in the reverse order. |
|
|