java一行代碼打印心形

以前看到Python一行代碼就能夠在控制檯打印心形,感受很是神奇,昨天忽然想起來其實java應該也是能夠的,在stream加持執行下,分享代碼以下:java

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" : ""))));

圖片描述

歡迎有興趣的童鞋一塊兒交流git

相關文章
相關標籤/搜索