程序设计1:编写程序实现输出以下图形。** * ** * * * ** * * * * * *
查看答案
程序设计2:编程实现求两个整数的最大公约数,例如24和18的最大公约数为6。
程序设计4:编程实现打印出所有的“水仙花数”,所谓“水仙花数”,是指一个3位数,其各位数字立方之和等于该数本身。
下面系统定义的常用异常中哪个是访问没有实例化的对象时产生的( )。
ArithmeticException
B. NullPointerException
C. IOException
D. ArrayIndexOutOfBoundsException
下面代码中,会抛出哪个类型的异常。()public class test{private static final String DRIVER=”com.mysql.jdbc.Driver”;private static final String URL=”jdbc:mysql://localhost:3306/db_database15”;private static final String USERNAME=”root”;private static final String PASSWORD=”111”;public static void main(String[] args){Class.forName(DRIVER);Connection conn=DriverManager.getConnection(URL,USERNAME,PASSWORD);}}
A. ClassNotFoundException
B. SQLException
C. JDBCException
D. MySQLException