행복한 프로그래밍

배열의 기본

영웅*^%&$ 2018. 2. 20. 18:55
728x90

#include <stdio.h>

main()
{
    int gameScores[10] = { 12, 5, 21, 15, 32, 10};
    int totalPoints = 0;
    int i;
    float avg;

    for(i = 6; i < 10; i++)
    {
        printf("게임 %d에서 선수의 득점은? ", i + 1);
        scanf(" %d", &gameScores[i]);
    }

    for(i = 0; i<10; i++)
    {
        totalPoints += gameScores[i];
    }

    avg = ((float)totalPoints / 10);

    printf("\n\n선수의 평균 득점은 %.1f.\n", avg);

    return(0);

}

728x90

'행복한 프로그래밍' 카테고리의 다른 글

질문에 답하기   (0) 2018.02.20
히카루의 논리   (0) 2018.02.20
movie   (0) 2018.02.20
initial  (0) 2018.02.20
fahr >> upper  (0) 2018.02.20