ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1001. Обратный корень

{c++} What's wrong here ? It seems like my compiler shows right answer ... Please , give a hand guys
Послано Said707 12 ноя 2017 17:06
#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
Re: {c++} What's wrong here ? It seems like my compiler shows right answer ... Please , give a hand guys
Послано Asce 6 авг 2018 18:45
we have to print in reverse order.
Re: {c++} What's wrong here ? It seems like my compiler shows right answer ... Please , give a hand guys
Послано Kirill 8 окт 2018 18:14
ТЫ ПРОСТО ЛОХ
Re: {c++} What's wrong here ? It seems like my compiler shows right answer ... Please , give a hand guys
Послано naruto Uzumaki 9 окт 2018 13:38
here
you have to print the answer in the reverse order.
Re: {c++} What's wrong here ? It seems like my compiler shows right answer ... Please , give a hand guys
Послано My tearZ My Pain 12 янв 2022 09:52
Тяжело

Edited by author 12.01.2022 09:52