首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zero~的代码贴全部
public class HelloWorld {
public static void main(String[] args) {
System.out.println("我在编程中国学JAVA");
System.out.println();

// 练习一下循环的使用
for (int i=1; i<=20; i++) {
System.out.printf("我爱编程中国 %d 次\n", i);
}

System.out.printf("\n\n绘制一个心形图案:");

......................
阅读全部 | 2022年11月13日 10:36
1
zero~