问答题
本程序的功能是定义了求长方形周长的方法rang,并调用该方法计算长和宽分别为67和23的长方形的周长。
public class exam_78{
public static void main(String[] args) {
______;
temp=new exam_78();
int res=rang(67,23);
System.out.println("res="+res);
}
static ______ rang(int width, int length){
int zc;
zc=(width+length)*2;
______;
}
}