乐趣区

java一行代码打印心形

之前看到 Python 一行代码就可以在控制台打印心形,感觉非常神奇,昨天突然想起来其实 java 应该也是可以的,在 stream 加持执行下,分享代码如下:

 IntStream.range(-15, 15).map(y -> -y).forEach(y -> IntStream.range(-30, 30).forEach(x -> System.out.print(Math.pow(Math.pow((x * 0.05), 2) + Math.pow((y * 0.1), 2) - 1, 3) - Math.pow(x * 0.05, 2) * Math.pow(y * 0.1, 3) <= 0 ? "love".charAt(Math.abs((y - x) % 4)) : "" + (x == 29 ?"\n":""))));

欢迎有兴趣的童鞋一起交流

退出移动版