System.out.printf("%c,%C",SEX1,SEX2);
/*下面这种是错误的
System.out.println(SEX1+SEX2);*/
//正确的是
System.out.println(SEX1);
System.out.println(SEX2);
//或者
System.out.printf("%c,%C",SEX1,SEX2);
为什么
/*下面这种是错误的
System.out.println(SEX1+SEX2);*/
//正确的是
System.out.println(SEX1);
System.out.println(SEX2);
//或者
System.out.printf("%c,%C",SEX1,SEX2);
为什么
2017-06-24
举报