/*
#include <stdio.h>
int main(void)
{
int n=1;
int result=0;
while(n<100)
{
if(n%3 == 0)
{
result += n;
}
n++;
}
printf("1부터 100사이의 모든 3의 배수의 합은 %d입니다.\n", result);
return 0;
}*/
#include <stdio.h>
int main(void)
{
int n;
int result=0;
for(n=1;n<100;n++)
{
if(n%3 == 0)
{
result += n;
}
}
printf("1부터 100사이의 모든 3의 배수의 합은 %d입니다.\n", result);
return 0;
}
/*
#include <stdio.h>
int main(void)
{
int n=1;
int result=0;
do
{
if(n%3 == 0)
{
result += n;
}
n++;
} while(n<100);
printf("1부터 100사이의 모든 3의 배수의 합은 %d입니다.\n", result);
return 0;
}*/
'2학기 > C언어' 카테고리의 다른 글
7장 3번 (0) | 2013.11.09 |
---|---|
7장 2번 (0) | 2013.11.09 |
같은자리 공란만들기 (0) | 2013.11.07 |
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
while 반복문 6 (0) | 2013.11.06 |