N天前,我从编程中国上闲来无事,抄了一段代码,如下
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绘制一个心形图案:");
float x, y;
for (y = (float)1.5; y > -1.5; y -= 0.1) {
for (x = (float)-1.5; x < 1.5; x += 0.05) {
float a = x * x + y * y - 1;
if ((a * a * a - x * x * y * y * y) <= 0.0) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
}
}
}
然后. . . .
? ? ?我感觉也不需要加大括号啊
(我idea绝对是正版的,插件也没有,只有软件里下载的)
什么意思!!__