赞
踩
eclipse
java
package src;
public class love {
public static void main(String[] args)throws InterruptedException {
int count=0;
for(float y=2.5f;y>-2.0f;y-=0.12f) {
for(float x=-2.3f;x<2.3f;x+=0.041f) {
float a = x*x+y*y-4f;
if((a*a*a-x*x*y*y*y)<-0.0f) {
String str="I LOVE YOU";
int num =count%str.length();
System.out.print(str.charAt(num));
count++;
}else {
System.out.print(" ");
}
}
System.out.println();
Thread.sleep(100);
}
System.out.println(" 爱意随风起,风止意难平 所爱隔山海,山海皆可平");
}
}
需要的自行拿走
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。