We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98a4f52 commit 89ccdf3Copy full SHA for 89ccdf3
1 file changed
src/main/java/com/github/hcsp/Main.java
@@ -4,28 +4,24 @@ public class Main {
4
public static void main(String[] args) {
5
// invoke method a() here
6
// 在这里调用方法a()
7
- a();
8
}
9
10
public static void a() {
11
System.out.println("a");
12
// invoke method b() here
13
// 在这里调用方法b()
14
- b();
15
16
17
public static void b() {
18
System.out.println("b");
19
// invoke method c() here
20
// 在这里调用方法c()
21
- c();
22
23
24
public static void c() {
25
System.out.println("c");
26
// invoke method d() here
27
// 在这里调用方法d()
28
- d();
29
30
31
public static void d() {
0 commit comments