java2 实用教程 第三版 第三章 习题 1
public class part1 { public static void main(String args[]) { char x='你',y='e',z='吃'; if(x>'A') { y='爱'; z='情'; } else y='我'; z='她'; System.out.println(""+x+y+z); } }
输出结果:
你爱她
java2 实用教程 第三版 第三章 习题 1
public class part1 { public static void main(String args[]) { char x='你',y='e',z='吃'; if(x>'A') { y='爱'; z='情'; } else y='我'; z='她'; System.out.println(""+x+y+z); } }
输出结果:
你爱她