属于程序猿的浪漫。分享一个表白程序,单身的程序员快发给你身边不懂代码的女孩子吧。
效果图
代码:
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 = "LOVE";
int num = count % str.length();
System.err.print(str.charAt(num));
count++;
}else {
System.err.print(" ");
}
}
System.err.println();
Thread.sleep(100);
}
}
}