JAVA提示 错误不是语句

提示26行:错误:不是语句

HelloWorld!;
提示26行:错误:需要;
HelloWorld!;
public class HelloWorld { // the main class

public HelloWorld() {} // constructor function

/**
* This is our main function!
*
* It's oniy a simple example...
*
* @param no parameter is needed.
* @return none.
*/
public static void main( String[] argv ) {// main function

System.out.println( "HelloWorld." ); //print the right sentence
HelloWorld!;
return; // program finished.
}
}
只复制了1半

//如果是String类型呢,要加""的,比如:String str = "HelloWorld!"
//直接输入:System.out.println("HelloWorld!");

 改为:

 public static void main( String[] argv ) {// main function

        System.out.println( "HelloWorld." );  //print the right sentence
                                              //HelloWorld!; 此处没有注释啊。。
        return; // program finished.
     }

温馨提示:内容为网友见解,仅供参考
第1个回答  2013-05-26
把HelloWord注释掉啊 你换行的时候还要加// 要不然编译器不会让你通过的
第2个回答  2013-05-26
System.out.println( "HelloWorld." ); //print the right sentence
HelloWorld!;
这里错了,// 注释只能管一行,HelloWorld!;写到下面去了。
第3个回答  2013-05-26
return 去掉
第4个回答  2013-05-26
System.out.println( "HelloWorld." ); //print the right sentence
HelloWorld!;
return; // program finished.

修改为:
String hellloWorld = " HelloWorld!";
System.out.println( helloWorld ); //print the right sentence

java不是语句是什么意思
程序中出现了没有任何意义的字符。java不是语句是一句程序用语,意思是程序中出现了没有任何意义的字符,是无意中打出了没有。

java中提示 不是语句
原因一:没有引入相应的jar包,可以通过Ctrl+shift+o引入需要的包。原因二:当前的java类不存在,那么就会报错找不到这个类。原因三:没有引入相应的jar包,这个错误需要将jar添加到lib下。

java报错 :不是语句
首先,正如上面俩人说的一样,你的for语句的第一个条件的写法不对 改为j=1 其次,contiue outer;你没看出来,关键字有错误么? 是continue 还有,你的n没有初值,执行到n++会出现错误!!最好在声明时赋值 n=0 语法有很多错误,建议多看看书,熟悉一下基础知识!

JAVA提示 错误不是语句
public static void main( String[] argv ) {\/\/ main function System.out.println( "HelloWorld." ); \/\/print the right sentence \/\/HelloWorld!; 此处没有注释啊。。 return; \/\/ program finished. }

java 错误:不是语句 System.out.printin(String);("Hello World"); ^...
System.out.printin中的printin写错了,应该是 System.out.println改下就对了

Java变成说我的三元运算符不是语句怎么回事?
你对三元运算符的理解错误:你想要表达的应该是 return ( ( x < y ) ? x : y);return x 语法错误。

JAVA报错不是语句
'+b[i]+','+c[i][m]+')";affectRow = sm.executeUpdate(sql);}sm.close();conn.close();}}}其中小问题比较多:第9行的connstr遗忘了双引号;使用executeUpdate时,返回的不是结果集,返回的是受影响的行数,int类型,已修正;14行sql语句中,使用'作为sql语句里面的",最基本sql语法。

java 错误: 不是语句
{int i=162;public static void main(String[] args) {Mytime a=new Mytime(1995,2,6);a.display(); \/\/这是方法调用,要有括号!System.out.println("Hello World!");}}class Mytime{int hour;int minute;int second;public Mytime(int a,int b,int c)\/\/构造器,不应有返回值类型...

Java程序报错怎么解决?
java程序的错误可以抽象分为三类:语法错误、运行错误和逻辑错误。1、语法错误 是指由于编程中输入不符合语法规则而产生的。程序编译就通不过,程序不能运行起来。此类错误最简单,调试起来比较容易 例如:表达式不完整、缺少必要的标点符号、关键字输入错误、数据类型不匹配、循环语句或选择语句的关键字不匹配...

java编译通过,为什么运行却提示找不到或无法加载主类
做了一个简单java,放在e盘根目录下,在c:下操作javac该java文件成功了,但用java 该class时却提示“找不到或无法加载主类” ,忙活了半天,找了些资料,发现其实很简单,不是语句错误,是路径问题classpath的问题。主要是以下两点要注意:1、在classpath的最前面要加一个本目录路径,用.表示,由于...

相似回答