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

Обсуждение задачи 1046. Геометрические грёзы

What accuracy for output? How many digits after decimal point?
Послано Mirzayanov Michael 3 сен 2001 05:25
Re: What accuracy for output? How many digits after decimal point?
Послано Marat Bakirov 3 сен 2001 17:54
The answer should be with 10^-2 accuracy.
But keep in mind that we do not accept extra zeroes.
1 != 1.0 != 1.00
1.1 != 1.10
Re: What accuracy for output? How many digits after decimal point?
Послано Maigo Akisame (maigoakisame@yahoo.com.cn) 20 ноя 2005 04:27
But what does 'extra zeros' mean?
For example, if the accurate value is 6.0004, shall I output 6 or 6.00?
And what if 6.000000000000004, which is just floating-point error?
Re: What accuracy for output? How many digits after decimal point?
Послано Maigo Akisame (maigoakisame@yahoo.com.cn) 21 ноя 2005 14:54
Just 6, in both cases.
Re: What accuracy for output? How many digits after decimal point?
Послано starforever 24 дек 2006 07:47
for C++, it would be a troublesome

cout<<setiosflags(ios::fixed)<<setprecision(2)<<result<<endl;

the program above will not work
so I have to write a void to do it myself.