我添加了一个for循环

This commit is contained in:
ytf 2024-09-04 15:00:55 +08:00
parent a5e4c92789
commit e68955c7c1
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
public class Main {
public static void main(String[] args) {
System.out.println("Hello World!");
for (int i=0; i<10; i++){
System.out.println("Hello World!");
}
}
}