Quantcast
Channel: 質問!ITmedia 新着質問(Java/253)
Viewing all articles
Browse latest Browse all 2439

java のfor文について質問です。

$
0
0
問題7-1:次の配列データの合計と平均を求めるプログラムを作成してください。 double [] x = { 12.3, 45.4, 45.9, 3.56, 6.6, 8.9, 2.3, 0.5, 4.3, 1.2, }; (自分が書いたもの) public class Sample8_4 { public static void main(String[] args) { double[] x = { 12.3, 45.4, 45.9, 3.56, 6.6, 8.9, 2.3, 0.5, 4.3, 1.2, }; double sum = 0.0; for (int i = 0; i < x.length; i++) { ; sum += x[i]; double average = sum / x.length; System.out.println("平均:" + average + ",合計:" + sum); } } } (実行結果) 平均:1.23,合計:12.3 平均:5.7700000000000005,合計:57.7 平均:10.36,合計:103.6 平均:10.716,合計:107.16 平均:11.376,合計:113.75999999999999 平均:12.266,合計:122.66 平均:12.495999999999999,合計:124.96 平均:12.546,合計:125.46 平均:12.975999999999999,合計:129.76 平均:13.095999999999998,合計:130.95999999999998 (答え) 総計:130.95999999999998, 平均:13.095999999999998 for文についていまいち理解できていません(拡張for文も) 回答よろしくお願いします。

Viewing all articles
Browse latest Browse all 2439

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>