![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
public class Love { public static void main(String[] args) { System.out.println( " *"+" "+" "+" "+" *"+ ' '+"* "+"*"+" "+"I LOVE YOU "+"*"+" *"+ ' '+" *"+" "+" "+" "+" *"+ ' '+" *"+" "+" "+" "+"*"+ ' '+" *"+" "+" "+" *"+ ' '+" *"+" "+" "+" *"+ ' '+" *"+" "+" *"+ ' '+" "+" *" ); System.out.println('*' + ' ' + '*');//42+9+42 char c1 = '*'; char c2 = ' '; int i = c1; System.out.println((int)c1); System.out.println((int)c2); System.out.println("*" + " " + "*"); } }
输出结果:
93
42
9
* *
把心形输出注掉了