将public class helloworld 改为public class HelloWorld,执行时要注意
大小写javac HelloWorld.java,还有最后的;号不要,还有string[],改为String[]

解决方案 »

  1.   

    注意大小写:
    system.out.println("hello,world!");
    -->
    System.out.println("hello,world!");
                                  public static void main(string[] args )
    -->
    public static void main(String[] args )
                              
      

  2.   

    兄弟,请注意大小写:是String, 不是string
      

  3.   

    试试这个:
    class HelloWorldApp 
    {
    public static void main(String[] args) 
    {
            System.out.println("Hello World!"); //Display the string.
        }
    }
      

  4.   

    同意 efoxxx(东冬) ,
     请注意Java和C++一样是区分大小写的,你的问题就是一个大小写问题!
      

  5.   

    呵呵,问题确实够简单。
    Mars_lee(二子)不是给气晕了吧? :)