#include <stdio.h>
int main(void)
{
int n, i;
printf("카운터의 초기값을 입력하시오:");
scanf("%d", &n);
for(i=n;i>0;i--)
{
printf("%d ", i);
}
printf("\a");
printf("\n");
return 0;
}
#include <stdio.h>
int main(void)
{
int x, y, z;
printf("정수를 입력하시오:");
scanf("%d", &z);
for(x=1;x<=z;x++)
{
for(y=1;y<=x;y++)
{
printf("%d", y);
}
printf("\n");
}
return 0;
}
#include <stdio.h>
int main(void)
{
int x, y;
for(y=1;y<=7;y++)
{
for(x=y;x<=6;x++)
printf(" ");
for(x=0;x<y;x++)
printf("*");
printf("\n");
}
return 0;
}
#include <stdio.h>
int main(void)
{
int number;
int result=0;
while(scanf("%d", &number) != EOF)
{
result += number;
}
printf("정수의 합은 %d 입니다.\n", result);
return 0;
}
'2학기 > C언어' 카테고리의 다른 글
7장 4번 (0) | 2013.11.09 |
---|---|
7장 3번 (0) | 2013.11.09 |
7장 1번 (0) | 2013.11.09 |
같은자리 공란만들기 (0) | 2013.11.07 |
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
/*
#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 |
움직이는 편지만들기움직이는 편지만들기
Posted at 2013. 11. 9. 12:35 | Posted in 2학기/플래시'2학기 > 플래시' 카테고리의 다른 글
캐릭터 뛰기 걷기 (0) | 2013.11.27 |
---|---|
플래시 요소의 종류와 특징 (0) | 2013.10.09 |
플래시 요소의 종류와 특징 (0) | 2013.10.09 |
플래시 (0) | 2013.10.09 |
Tools 패널 (0) | 2013.09.08 |
같은자리 공란만들기같은자리 공란만들기
Posted at 2013. 11. 7. 14:46 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, j, m;
for(i=5;i>=1;i--) //y축
{
for(j=1;j<6;j++) //x축
{
if(i!=j)
printf("*");
else
printf(" ");
}
printf("\n");
}
}
'2학기 > C언어' 카테고리의 다른 글
7장 2번 (0) | 2013.11.09 |
---|---|
7장 1번 (0) | 2013.11.09 |
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
while 반복문 6 (0) | 2013.11.06 |
while 반복문 5 (0) | 2013.11.06 |
while 반복문 7 - 평균값구하기 센티널값 빼기while 반복문 7 - 평균값구하기 센티널값 빼기
Posted at 2013. 11. 7. 00:05 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int n, grade;
double average, sum;
sum = 0;
n = 0;
grade = 0;
printf("종료하려면 음수를 입력하세요.\n");
while(grade >= 0)
{
printf("성적을 입력하세요 : ");
scanf("%d", &grade);
sum = sum + grade;
n++;
}
sum = sum - grade;
n--;
average = sum / n;
printf("평균은 %lf점입니다.", average);
}
'2학기 > C언어' 카테고리의 다른 글
7장 1번 (0) | 2013.11.09 |
---|---|
같은자리 공란만들기 (0) | 2013.11.07 |
while 반복문 6 (0) | 2013.11.06 |
while 반복문 5 (0) | 2013.11.06 |
while 반복문 4 (0) | 2013.11.06 |
while 반복문 6while 반복문 6
Posted at 2013. 11. 6. 21:46 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, n, sum;
i = 0;
sum = 0;
while (i < 5)
{
printf("값을 입력하시오: ");
scanf("%d", &n);
sum = sum + n;
i++;
}
printf("1부터 %d까지의 합은 %d입니다.", n, sum);
}
'2학기 > C언어' 카테고리의 다른 글
같은자리 공란만들기 (0) | 2013.11.07 |
---|---|
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
while 반복문 5 (0) | 2013.11.06 |
while 반복문 4 (0) | 2013.11.06 |
while 반복문 3 (0) | 2013.11.06 |
while 반복문 5while 반복문 5
Posted at 2013. 11. 6. 18:12 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, n, sum;
printf("정수를 입력하세요 : ");
scanf("%d", &n);
i = 0;
sum = 0;
while (i <= n)
{
sum += i;
i = i + 2;
}
printf("1부터 %d까지의 합은 %d입니다.", n, sum);
}
'2학기 > C언어' 카테고리의 다른 글
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
---|---|
while 반복문 6 (0) | 2013.11.06 |
while 반복문 4 (0) | 2013.11.06 |
while 반복문 3 (0) | 2013.11.06 |
while 반복문 2 (0) | 2013.11.06 |