题目内容
在Eclipse等集成开环境中输入以下程序代码,运行测试,理解不同数据类型。public class Example02 {public static void main(String[] args) {int x = 0;int y = 0;int z = 0;boolean a, b;a = x > 0 & y++ > 1;System.out.println(a);System.out.println("y = " + y);b = x > 0 && z++ > 1;System.out.println(b);System.out.println("z = " + z);}}
查看答案
搜索结果不匹配?点我反馈