For this part, you are allowed 30 minutes to write an e-mail to change the time of an appointment. You should write at least 120 words following the outline given below in Chinese:
1. 给你的朋友Frank发一封e-mail,告诉他由于明天你要参加一场考试,无法按预定计划和他见面;
2. 对此带来的不便表示抱歉;
3. 重新约定见面时间。
Changing the Time of an Appointment
查看答案
SECTION A CHINESE TO ENGLISH
Directions: Translate the following text into English.
父亲为什么会把我逼到蒙娜丽莎面前,并且给我听交响乐?我想这是那种叫做命运的东西。到了27岁,我才敢向他提起这个问题(以前我甚至怕提到这个女人的名字)。他说肖邦是好东西,当我号啕大哭,他就是要把我一个人关在屋子里听肖邦。那时周围没有人家像我们一样拥有唱机和电视机,那时肉、布、油等物品还在实行配给制,那时周围有很多邻居还靠到菜场拣菜叶过生活,而我们是这幢楼里惟一的知识分子家庭,父亲认为我应该感到幸运。
Once we have accomplished one thing, we need to remember that there is plenty left to do.
阅读以下说明和Java源程序,将应填入(n)处的字句写在答题纸的对应栏内。
说明
以下程序的功能是计算三角形、矩形和正方形的面积并输出。
程序由5个类组成:AreaTest是主类,类Triangle、Rectangle和Square分别表示三角形、矩形和正方形,抽象类Figure提供了一个计算面积的抽象方法。
程序
public class AreaTest{
public static void main(String args[]){
Figure[]figures={
new Triangle(2,3,3),new Rectangle(5,8), new Square(5)
};
for(int i=0;i<figures.1ength;i++){
System.out.println(figures[i]+"area="+figures[i].getArea());
}
}
}
public abstract class Figure{
public abstract double SetAJea();
public class Rectangle extends (1) {
double height;
double width;
public Rectangle(double height,double width){
this.height=height;
this.width=width;
}
public String toString(){
return "Rectangle:height="+height+",width="+width+":";
}
public double getArea() { return (2);
} } public class Square extends (3) {
public Square(double width) {
(4);
}
public String toString() {
return "Square:width="+width+":";
} } public class Triangle extends (5). {
double la;
double lb;
double lc;
public Triangle(double la,double lb,double lc) {
this.la=la; this.lb=lb; this.lc=lc;
public String toString(){
return "Triangle: sides="+la+","+lb+","+lc+":";
public double getArea() {
double s=(la+lb+lc)/2.0;
return Math.sqrt(s*(s-la)*(s-lb)*(s?1c));
}
}