搜索
编程论坛
→
开发语言
→
『 JAVA论坛 』
→ 请教一下有哪点错误
标题:
请教一下有哪点错误
只看楼主
zhuihongchen
等 级:
新手上路
帖 子:22
专家分:0
注 册:2006-2-9
楼主
问题点数:0 回复次数:1
请教一下有哪点错误
class Class1{
public static void main(String args[])
{
final int k=10,i=5;
boolean cont=1;
System.out.println("k"=+k);
System.out.println("i="+i);
i++;
cont=i==k;
if(cont)
System.out.println("now i=k");
}
}
搜索更多相关主题的帖子:
void
public
2006-03-13 21:04
zhouyao_14
等 级:
新手上路
帖 子:196
专家分:0
注 册:2006-2-15
第
2
楼
得分:0
class Class1{
public static void main(String args[])
{
final int k=10;
int i=5;
boolean cont=true;
System.out.println
(
"k="+k
);
System.out.println("i="+i);
i++;
cont=i==k;
if(cont)
System.out.println("now i=k");
}
}
final 为定义的常量是不可以更改的
2006-03-13 21:31
2
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-50242-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.925725 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved