|
|
вернуться в форумПоказать все сообщения Спрятать все сообщения#include <iostream> using namespace std; int main() { double k; while(cin >> k) { cout << fixed << setprecision(4) << sqrt(k) << endl; } } I think the solution is supposed to start from the last number |
|
|