ボウリング ゲームのプログラムを作成する必要があります。ゲーム数とボウラーの数を入力するようにユーザーに依頼します。ボウラーごとに、各ゲームのスコアを取得します。スコアを表示します。各ボウラーの平均を計算し、平均を表示します。最後にチーム平均を表示します。コードを書きました。エラーはありませんが、問題は、プレーヤーの平均スコアとチームの合計スコアがカウントされないことです。これらの計算には助けが必要です。
#include <stdio.h>
int main()
{
int playerTotal = 0;
int teamTotal = 0;
int score;
int numgames, player, bowler, game;
printf ("How many games?\n");
scanf ("%d", &numgames);
printf ("How many players?\n");
scanf ("%d", &player);
for (bowler = 1; bowler <= 3; bowler++)
{
for (game = 1; game <= 2; game++)
{
printf ("\nEnter the score for game %d for bowler %d: ", game, bowler);
scanf ("%d", &score);
playerTotal += score;
}
printf ("\nThe average for bowler %d is: ", bowler, playerTotal/2);
printf ("\nThe total for the game is:", teamTotal);
teamTotal += playerTotal;
}
return 0;
}