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

Обсуждение задачи 1293. Эния

whats wrong!!!!! Everything is right
Послано shubham 8 июл 2014 00:26
#include<stdio.h>

main()
{

    int n, a, b;
    int weight;

    while (scanf("%d", n) != EOF || scanf("%d", a) != EOF || scanf("%d",b) != EOF)
    {
        weight = n*a*b * 2;
        printf("%d", weight);
    }

    return 0;
}
Re: whats wrong!!!!! Everything is right
Послано Majin Boo 10 янв 2016 23:45
1. You should specify the return type value for the main function: int main() {}
2. Is not necessarry to read the input data until the end of stream. Just read it one time:

int n, a, b, w;
scanf("%d%d%d", &n, &a, &b);
w = n*a*b*2;
printf("%d\n", w);
Re: whats wrong!!!!! Everything is right
Послано ToadMonster 11 янв 2016 15:55
Please read scanf documentation. It returns count of read variables.
Also - task description means 3 and only 3 integers to read. Why did you use "while" here?
Re: whats wrong!!!!! Everything is right
Послано Peng Wang 14 мар 2016 05:42
The main problem is in "||". You should use "&&" anyway. Otherwise, the shortpath magic happens.