public class Score_Calculator {
  public float calAvg(float s1, float s2, float s3) {
    return (s1+s2+s3)/3.0f;
  }
}



