EASY7
[C언어 9강] 반복문 본문
즐거운 C언어를 배우러 let's goto C
[1] for loop
1부터 100까지의 합을 구하자!
#include<stdio.h>
void main()
{
int a, sum=0;
for (a=1; a<=100; a++)
sum+=a;
printf("1부터 100까지의 합은 %d", sum);
}
아직 생기초다
자만하지말자
[2] while
#include<stdio.h>
void main()
{
int a=1, sum=0;
while(a<=50)
{
sum+=a;
a++
}
printf("1부터 50까지의 합은 %d", sum);
}
[3] do while
#include<stdio.h>
void main(){
int a=1, sum=0;
do
{sum+=a;
a++;
}while(a<=50);
'개발 공부 > C' 카테고리의 다른 글
[C언어 11강] 함수란 무엇인가 (0) | 2016.07.07 |
---|---|
[C언어 10강] 실제 응용프로그램에서 반복문 (0) | 2016.07.06 |
[C언어 8강] switch문과 goto문 (0) | 2016.07.06 |
[C언어 7강] 조건문 if (0) | 2016.07.06 |
[c언어 6강]연산자 (0) | 2016.07.05 |
Comments