エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Javaで合計、平均、分散、標準偏差を出す - Qiita
import java.io.*; public class StudentTestData { public static void main(String[] args) throws IO... import java.io.*; public class StudentTestData { public static void main(String[] args) throws IOException { double total = 0.0; //合計点 double average = 0.0; //平均点 double var = 0.0; //分散 double stdev = 0.0; BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); System.out.print("学生数は >"); int member = Integer.parseInt(in.readLine()); int points[] = new int[member]; for (int i=0;
2014/11/02 リンク