public class Welcome
{
public static void main(string args[])
{
system.out.println("hello");
 }
 }

解决方案 »

  1.   

    (String args[])
    打印“hello”
      

  2.   

    在控制台打印hello 但是system应该成System
      

  3.   

    public class Welcome 

    public static void main(string args[]) 

    system.out.println("hello"); 

    }
      

  4.   

    首先public static void main(String[] args){}
    其次System.out.println()
      

  5.   

    在控制台输出hello,system应改成 System
      

  6.   

    public class Welcome 

    public static void main(String args[]) 

    System.out.println("hello"); 

    }
    红色部分有问题,就是在控制台打印hello
      

  7.   

    虽说这只是一个简单的程序地、不这却告诉 程序的入口,与在控制台的输出语句,
     不过JAVA  是区分大小的写的啊,  
      

  8.   

    public class Welcome 

    public static void main(String args[]) 

    System.out.println("hello"); 


    打印  hello
      

  9.   

    public class Welcome
    {
    public static void main(String args[])
    {
    System.out.println("hello");
    }
    }
      

  10.   

    public class Welcome 

    public static void main(String args[]) 

    System.out.println("hello"); 


    红色部分有问题,就是在控制台打印hello