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

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

why this is not accepted?
Послано Md.Toufiqul Islam 3 дек 2015 01:57
where is the problem
#include<stdio.h>

int main(void)
{
 int a,b,sum;
 printf("a:");
 scanf("%d",a);

 printf("b:");
 scanf("%d",&b);

 sum=a+b;
 printf("Sum=%d",sum);

 return 0;
}

Edited by author 03.12.2015 01:58
Re: why this is not accepted?
Послано ToadMonster 3 дек 2015 14:19
http://acm.timus.ru/help.aspx?topic=judge&locale=en

The program must print only the data that is required by the problem statement. The program must not print any prompts (“Enter N:”). The program must not wait for pressing a key at the end of execution.
Re: why this is not accepted?
Послано ToadMonster 3 дек 2015 14:21
And. Did you run it locally? Try please.

You should have crash here: scanf("%d",a);
Re: why this is not accepted?
Послано xolmomin 31 дек 2016 14:43
scanf("%d",a);



scanf("%d",&a);