Java中输入异常错误

时间:2013-09-03 19:35:07

标签: java

我一直收到异常错误。这是一个简单的代码。为什么我会收到异常错误?

class ThirdProgram
{
public static void main(String[] args)
 {
  System.out.println("Hello out there.");
  System.out.println("I will add two numbers for you.");
  System.out.println("Enter two whole numbers on a line.");

  int n1, n2;

  Scanner keyboard = new Scanner(System.in);
  n1 = keyboard.nextInt();
  n2 = keyboard.nextInt();

  System.out.println("The sum of those two numbers is");
  System.out.println(n1 + n2);
 }
}

1 个答案:

答案 0 :(得分:2)

使用时:

http://ideone.com/

执行以下操作:

第1步

确保在左侧选择Java。

第2步

输入以下代码:

import java.util.Scanner;


class ThirdProgram
{
public static void main(String[] args)
 {
  System.out.println("Hello out there.");
  System.out.println("I will add two numbers for you.");
  System.out.println("Enter two whole numbers on a line.");

  int n1, n2;

  Scanner keyboard = new Scanner(System.in);
  n1 = keyboard.nextInt();
  n2 = keyboard.nextInt();

  System.out.println("The sum of those two numbers is");
  System.out.println(n1 + n2);
 }
}

第3步

在点击“提交”按钮之前,请点击click here to enter input (stdin) or additional note。单击它后,将出现两个框。在第一个框(enter your input (stdin))中,输入:

5

7

确保在7之后按Enter键。

第4步

然后点击SUBMIT。结果将在底部加载。

注意:

您应该下载并使用IDE(例如JGrasp或Eclipse)。大多数IDE都带有编译器,允许您在从某个控制台运行程序后输入输入。