本帖最后由 mnxnm 于 2015-6-26 16:50 编辑
- package com.mnxnm.second.omcb;
- /*
- * @author sman@mnxnm.com
- */
- public class test {
- public static void main(String[] args) {
- for (int i = 0, j = 50; i < 5; i++, ++j) {
- System.out.println("先打印:" + i + "→" + j);
- ++i;
- j++;
- System.out.println("后打印:" + i + "→" + j + "\n");
- }
- }
- }
复制代码
|
|