드래그 앤 드롭으로
즐겨찾기 아이콘 위치 수정이 가능합니다.
게시물ID : computer_43812짧은주소 복사하기
작성자 : 어렵당힝
추천 : 0
조회수 : 242회
댓글수 : 10개
등록시간 : 2012/04/14 18:45:40
#include <stdio.h>
int main(void)
{
int score, totalScore, i, num;
double average;
totalScore = 1;
printf("Enter a student number:");
scanf("%d", &num);
i = 1;
while (i < num)
{
printf("Enter a score:");
scanf("%d", &score);
totalScore += score;
}
printf("The total is %d", totalScore);
average = totalScore / num;
printf("The average is %.1f", average);
return 0;
}
이거 디버그 하면 score 치는 창이 무한대로 나와요 ㅠㅠㅠ
와일 문 뒤에 조건식에 뭐라고 치는게 맞을까요?..
댓글 분란 또는 분쟁 때문에
전체 댓글이 블라인드 처리되었습니다.
새로운 댓글이 없습니다.