面向对象的FOR循环应加在哪--------------大侠们请进
//我想要的是: 用FOR循环来录入i+1同学的成绩,并相应的算出此同学的总分和平均分;可是不知FOR加在哪,大侠们指导下.package accp7;
import java.util.*;
public class Accp7_3_1{
int java;
int c;
int sql;
int people;
public int showTotalScore(){
int total=java+c+sql;
return total;
}
public void showScore(){
System.out.println("总成绩是: " + showTotalScore());
}
public double showAvgScore(){
double avg=(java+c+sql)/3;
return avg;
}
public void showAvg(){
System.out.println("平均分是: " + showAvgScore());
}
}
package accp7;
import java.util.*;
public class Accp7_3 {
/**考试结束,要计算班里同学的平均分和3门课的部成绩,编写成绩计算类来实现
* 这些功能。
* @param args
*/
public static void main(String[] args) {
// TODO 自动生成方法存根
Accp7_3_1 sc=new Accp7_3_1();
Scanner input =new Scanner(System.in);
System.out.print("请输入全班的总人数:");
sc.people=input.nextInt();
System.out.print("请输入JAVA的成绩:");
sc.c=input.nextInt();
System.out.print("请输入C的成绩:");
sc.java=input.nextInt();
System.out.print("请输入sql的成绩:");
sc.sql=input.nextInt();
sc.showScore();
sc.showAvg();
}
}