首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

do_while循环万万不要少了do

2012-11-01 
do_while循环千万不要少了dopublic class Test{?public static void main(String[] args){??System.out.pr

do_while循环千万不要少了do

public class Test{
?public static void main(String[] args){
??System.out.println(test());
?}
?private static boolean test(){??
???int i=10;??
???//do{???? //试着注释掉这句,对比着运行下,看看结果有什么不同,
???{
????System.out.println(i);
????i--;??
???}while(i>0);??
???return true;??
??}?

}

?

两个语句造成打印出的 i 的值是多少?主函数里打印的是true 还是 false呢?

?

热点排行