Difference between r1.11 and the current
@@ -48,7 +48,8 @@
=== 최필립 ===
{{{
#include <stdio.h>
*악 발동이 안됩니다 아직 시간이 없어서 못고쳤어요 점심먹고 고칠게요
*~~악 발동이 안됩니다 아직 시간이 없어서 못고쳤어요 점심먹고 고칠게요~~ 고쳤습니다
*배고픕니다
{{{
#include <stdio.h>
@@ -57,22 +58,24 @@
{
int mat[11]={0,} , i=0;
i++;
}
printf("총합=%d 평균=%d",mat[10],mat[10]/10);
return 0;
=== 홍성현 ===
{{{
int mat[11]={0,} , i=0;
while(i<10);
while(i<10)
{ printf("수학점수입력 %d번째 : ",i);
scanf("%d", &mat[i]);
printf("수학점수입력 %d번째 : ",i+1);
scanf("%d",&mat[i]);
mat[10]=mat[10]+mat[i];i++;
printf("총합=%d 평균=%d",mat[10],mat[10]/10);
}}}}
}}}}}
=== 홍성현 ===
{{{
2. 내용 ¶
- 복습
- 참고 : 새싹교실/2014/배반/1주차
- 참고 : 새싹교실/2014/배반/1주차
- 빼먹은 거 보충
- 배열
- 배열
- 배열
- 앞으로는 우리도 후기를 쓰자!
3. 과제 ¶
- 학생 10명의 수학 성적을 입력받는 프로그램을 작성.
- 배열을 사용하며, 반복문은 딱 한 번만 사용할 것.
- 배열에 들어갈 내용은 학생 10명의 성적과 총합.
- 출력 내용은 총합과 평균.
- 문자 입력에 대한 예외처리는 안해도 됨.
3.1. 임기찬 ¶
#include <stdio.h> int main() { int mathscore[11] = {0,},i; //mathscore[10] = 총합 for(i = 0;i < 10;i++) { printf("%d/10 \n",i+1); printf("수학점수를 입력해 주세요. : "); scanf("%d",&mathscore[i]); mathscore[10] = mathscore[10] + mathscore[i]; } printf("총합 : %d, 평균 : %d \n",mathscore[10],mathscore[10] / 10 ); return 0; }
- 잘했어요, 잘했어요.
3.2. 최필립 ¶
*악 발동이 안됩니다 아직 시간이 없어서 못고쳤어요 점심먹고 고칠게요 고쳤습니다
*배고픕니다
*배고픕니다
#include <stdio.h> int main() { int mat[11]={0,} , i=0; while(i<10) { printf("수학점수입력 %d번째 : ",i+1); scanf("%d",&mat[i]); mat[10]=mat[10]+mat[i]; i++; } printf("총합=%d 평균=%d",mat[10],mat[10]/10); return 0;
}}