航班查询及定票程序源码。
作者:哈工大软件学院吴海贤等。
运行方法:先要创建jdbc数据源dsStudent,指向附带的数据库db1.mdb,然后在命令行键入:
C:\cs>java flight.Main.Main
考考你(29)
What is the output of the following piece of code
1. int x = 6;
2. double d = 7.7;
3. System.out.println((x>d) ? 99.9 : 9);
a. 9
b. 9.0
c. 99.9
d. Nothing, an ArithmeticException is thrown at line 3.
点击查看答案