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

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

what is wrong with this code! someone help me please
Послано Brunno de Godoy Amorim 14 май 2011 05:24
import java.util.Scanner;

public class Sum{

public static void main(String tev[]){

Scanner input = new Scanner (System.in);

Integer num1;

Integer num2;

Integer resul = 0;

System.out.println("enter a number");
num1 = input.nextInt();


System.out.println("enter a number");
num2 = input.nextInt();

resul = (num1 + num2);

System.out.printf("%d + %d = %d",num1,num2,resul);


}
}
Re: what is wrong with this code! someone help me please
Послано AterLux 14 май 2011 15:39
System.out.println("enter a number");
...
System.out.println("enter a number");
...
System.out.printf("%d + %d = %d",num1,num2,resul);

you asked to output only single number without any other text, including input prompt. Like this

System.out.println(resul);

Testing system can't read your "enter a number"! It not so clever ;)

Edited by author 14.05.2011 15:40