浏览 1143 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (1) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-05-27
最后修改:2009-05-27
Test 写道
public class Test {
public static void main(String[] args) { for(int i=0;i<5;System.out.println("the number"+(i++))){ System.out.println(i); } }
}
结果: 写道
0
the number0 1 the number1 2 the number2 3 the number3 4 the number4 System.out.println("")平时都用作打印,在控制台输出,没想到还能这么用,可以作为一个条件! 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |