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

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

What's wrong with it?
Послано Me 3 июл 2014 22:03
#include <iostream>
using namespace std;
void main()
{
    int a, b;

    cin >> a >> b;

    cout << "The sum is: " << output << endl;
}
Re: What's wrong with it?
Послано Marques Traylor 25 июл 2014 23:22
You didn't declare output:

#include <iostream>

int main()
{
     int a, b;

     std::cout << "Enter first number: ";
     std::cin >> a;

     std::cout << "Enter second number: ";
     std::cin >> b;

     int output = a + b;

     std::cout << "\nThe sum is: " << output << std::endl;

    return 0;

}



Edited by author 25.07.2014 23:23
Re: What's wrong with it?
Послано Majin Boo 31 окт 2015 21:27
Your program must read and print only the data that is required in the problem statement. For example, you musn't print "Enter first number: " or "The sum is: ".