java练习题集答案解析 下载本文

}

10.写一个类,该类有一个方法public int f(int a,int b),该方法返回a和b的最大公约数。然后再编写一个该类的子类,要求子类重写方法f,而且重写的方法将返回a和b的最小公倍数;要求在重写的方法体中首先调用被隐藏的方法返回a和b的最大公约数m,然后将乘积(a*b)/m返回;要求在应用的程序的主类中分别使用父类和子类创建对象,并分别调用方法f计算两个正整数的最大公约数和最小公倍数。

class A {

public int f(int a, int b) {

if (b < a) {

int temp = 0; temp = a; a = b; b = temp; }

int r = b % a; while (r != 0) { }

b = a; a = r; r = b % a;

}

return a; }

class B extends A { }

public class Xiti9 { }

public static void main(String args[]) {

A a = new A(); B b = new B();

System.out.println(\最大公约数 :\System.out.println(\最小公倍数 :\}

public int f(int a, int b) { }

int division = super.f(a, b); return (a * b) / division;

第6章内部类与异常类练习题

一、填空题

1、Throwable类有两个子类,分别是Error和Exception.

2、所有异常的根类是Throwable类,throw关键字的作用是引发异常。 3、try关键字负责定义处理异常的程序,再来由catch关键字来捕获异常。 4、补足代码;调用两个函数,要求用匿名内部类

interface Inter {

void show(int a,int b); void func(); }

class Demo {

public static void main(String[] args) {

Inter in=new Inter(){

Void show(int a,int b){} Void func(){}};

}

in.show(4,5); in.func(); }

5.、下面程序的输出结果是:BCD

class Demo {

public static void func() throws Exception { }

public static void main(String[] args){

try{ try{

throw new Exception();

} finally{

System.out.println(\); }

func();

System.out.println(\); }