添加两个数字,bt遇到错误

时间:2014-03-22 04:52:44

标签: java

我打算写第一个java程序:

public class Add{  
     public static void main(String args[])  {
          int a = 50;
          int b = 20;
          int C = a+ b;
          System.out.println("add is" +C);
     }
}

当我完成编译时,编译成功,但在运行时它会给error这样:

E:\Work>javac Add.java  
E:\Work>java Add Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 
    at Add.main(Add.java:7) 

这个error适用于每个程序,我不知道为什么即使我想打印一个问候单词然后同样的错误,请立即帮助我任何一个?

0 个答案:

没有答案