-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest2017.java
More file actions
37 lines (34 loc) · 829 Bytes
/
Test2017.java
File metadata and controls
37 lines (34 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com;
/**
*
* @类名称 Test2017.java
* @类描述 <pre></pre>
* @作者 zhuangzhichao zhuangzhichao@tansun.com.cn
* @创建时间 2017年8月22日 下午2:16:38
* @版本 1.00
*
* @修改记录
* <pre>
* 版本 修改人 修改日期 修改内容描述
* ----------------------------------------------
* 1.00 zhuangzhichao 2017年8月22日
* ----------------------------------------------
* </pre>
*/
public class Test2017 {
public static void test(int i) {
if (i == 0) {
System.out.println("123");
}
}
public static void main(String[] args) {
int i = 0;
test(i);
System.out.println("1");
System.out.println("2");
System.out.println("3");
System.out.println("4");
System.out.println("5");
System.out.println("6");
}
}