User:JOptionPane/monobook.js

import java.util.*;

public class SumAverageScores
{
	public static Scanner console = new Scanner(System.in);

	public static void main(String[] args)
	{
		double a = inputDouble("Input first score");
		double b = inputDouble("Input second score");
		double c = inputDouble("Input third score");
		double d = inputDouble("Input fourth score");
		double e = inputDouble("Input fifth score");

		int v = (int)(a + 0.5);
		int w = (int)(b + 0.5);
		int x = (int)(c + 0.5);
		int y = (int)(d + 0.5);
		int z = (int)(e + 0.5);

		outputAverage(v,w,x,y,z);
    }


	public static double average(double x1, double x2, double x3, double x4, double x5) {
		return (x1 + x2 + x3 + x4 + x5) / 5.0;
    }

     public static void outputAverage(double x1, double x2, double x3, double x4, double x5) {
		 System.out.printf("The average of %2f, %2f, %2f, %2f, and %2f is %2f\n"
		       ,x1,x2,x3,x4,x5,average(x1,x2,x3,x4,x5));
    }
    public static double inputDouble(String prompt) {
		System.out.println(prompt);
		return console.nextDouble();
    }
}

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.