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

Обсуждение задачи 1000. A+B Problem

Please help me to find the error
Послано Md. Asif Imrul 31 мар 2015 20:16
I want to submit the solution in C language. What language I should choose from the option and what is the error in following coding:-
#include <stdio.h>

int main()
{
    double a,b;
    scanf("%lf %lf",&a,&b);
    printf("%lf",a+b);
    return 0;
}

Edited by author 31.03.2015 20:19
Re: Please help me to find the error
Послано Snowman 2 апр 2015 20:26
Use integral type (int, long, long long) or set precision in output format string printf("%0.0lf",a+b);
Re: Please help me to find the error
Послано Chen 6 июн 2015 16:58
just use the integer