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

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

Java
Послано Arheus 28 авг 2014 01:04
What is wrong?
import java.util.*;

public class Main {
    public static void main(String[] args){
        int a,b = 0;

        Scanner in = new Scanner(System.in);

        System.out.println("First num");
        a = in.nextInt();
        if(a==1){
        System.out.println("Second num");
        b = in.nextInt();}
        if(b==5){
        System.out.println(a+b);
        }
    }
}
Re: Java
Послано Vlad 29 авг 2014 23:25
You should not write any other message than the expected output.
How should the compiler know that writing "First num" and "Second num" isn't part of the problem result?



Edited by author 29.08.2014 23:25
Re: Java
Послано wyq358171691@sina.com 11 сен 2014 09:00
big int will be wrong
Re: Java
Послано Danila 1 окт 2014 18:42
What is the problem

import java.util.Scanner;
public class Summa {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
Scanner scan=new Scanner( System.in);
System.out.println("Введите значение a");
int a;
a=scan.nextInt();
System.out.println("Введите значение b");
int b;
b=scan.nextInt();

System.out.println(" a + b = " + (a + b));

    }

}
Re: Java
Послано ACkf 20 дек 2014 10:54
You should not write any other message than the expected output.
Re: Java
Послано Sazid Hasan 14 янв 2016 00:05
what is the problem?



package Acm;

import java.util.Scanner;

public class Num {

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        Scanner numscanner = new Scanner(System.in);

        int a = numscanner.nextInt();
        int b = numscanner.nextInt();
        System.out.println(a + b);
    }
}