?? testreport.java
字號:
public class TestReport
{
public static void main(String[] args)
{
Lesson lesson=new Lesson("C程序設計","2007-12-21","李四");
StudentScore[] ss=new StudentScore[3];
String[] l={"張三","王五","pppp"};
int[] t={75,65,85};
for(int i=0;i<l.length;i++)
{ss[i]=new StudentScore(l[i],t[i]);}
ScoreReport sr=new ScoreReport(lesson,ss);
System.out.println(sr);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -