题目内容

胎面是指胎冠最外层与路面接触带有花纹的外胎胶层

A. 对
B. 错

查看答案
更多问题

胎面的作用是保护胎体,防止其早期磨损和损伤

A. 对
B. 错

缓冲层是指斜交轮胎胎面和胎体之间的胶布层

A. 对
B. 错

缓冲层的作用是缓和并部分吸收路面对轮胎的冲击。

A. 对
B. 错

写出以下程序的运行结果:class MyException extends Exception{public String toString( ){ return "negative"; }}public class ExceptionDemo{public static void mySqrt(int a) throws MyException {if( a<0 ) throw new MyException();System.out.println(Math.sqrt(a));}public static void main( String args[] ){try{ mySqrt(25); mySqrt(-5); }catch( MyException e ){ System.out.println("Caught "+e); }}}

答案查题题库