정보처리기사 2020년 3회 78번
From IT Wiki
Revision as of 01:00, 22 October 2022 by Maintenance script (talk | contribs) (Imported from text file)
과목: 프로그래밍 언어 활용
문제[edit | edit source]
78. 다음 C 프로그램의 결과 값은?
main(void) {
int i;
int sum=0;
for(i=1; i<=10; i=i+2)
sum=sum+i;
printf(“%d”, sum);
}
- ① 15
- ② 19
- ③ 25
- ④ 27
풀어보기[edit | edit source]
정답[edit | edit source]
- 3번