๋ฐ์ํ
๋ฌธ์ 07-1
1. ์ ์๋ฅผ ์ ๋ ฅ๋ฐ์ ๊ทธ์๋งํผ Hello World ์ถ๋ ฅ.
1
2
3
4
5
6
7
8
9
10
11
12
|
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
for(int i =1;i<=a;i++)
{
printf("Hello World\n");
}
}
|
cs |
2. ์ ์๋ฅผ ์ ๋ ฅ๋ฐ์ ๊ทธ์๋งํผ 3์ ๋ฐฐ์๋ฅผ ์ถ๋ ฅ
1
2
3
4
5
6
7
8
9
10
11
12
|
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
for(int i =1;i<=a;i++)
{
printf("%d\t",3*i);
}
}
|
cs |
3. ์ ์๋ฅผ ๊ณ์ํด ์ ๋ ฅ๋ฐ์, ๊ทธ๊ฐ์ ๋ํด๊ฐ๋ค. 0์ ์ ๋ ฅ์ ์ข ๋ฃํ๊ณ ๋ชจ๋ ์ ์์ ํฉ์ ์ถ๋ ฅํ ํ๋ก๊ทธ๋จ์ ์ข ๋ฃํ๋ค.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include<stdio.h>
int main()
{
int a;
int result = 0;
for(;;)
{
printf("๊ฐ์ ์
๋ ฅ");
scanf("%d",&a);
result += a;
if(a == 0)
break;
}
printf("๋ชจ๋ ๊ฐ์ ํฉ์ %d",result);
}
|
cs |
//๋ฌดํ๋ฃจํ๋ก for(;;)์ด๋ while(1) ์ด์ฉ๊ฐ๋ฅ
4. ์ ๋ ฅํ ๋จ์ ๊ตฌ๊ตฌ๋จ์ ์ญ์์ผ๋ก ์ถ๋ ฅ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include<stdio.h>
int main()
{
int a;
int result = 0;
for(;;)
{
printf("๊ฐ์ ์
๋ ฅ");
scanf("%d",&a);
result += a;
if(a == 0)
break;
}
printf("๋ชจ๋ ๊ฐ์ ํฉ์ %d",result);
}
|
cs |
5. ์ ๋ ฅ๋ฐ์ ์ ์์ ํ๊ท ์ ๊ตฌํ๋ ๋๊ฐ์ง ์กฐ๊ฑด์ ๋ง์กฑ
(๋ช๊ฐ์ ์ ์๋ฅผ ์ ๋ ฅํ ๊ฒ์ธ์ง ๋ฌป๊ณ ๊ทธ์๋งํผ ์ ์๋ฅผ ์ ๋ ฅ๋ฐ๋๋ค. ํ๊ท ๊ฐ์ ์์ซ์ ์ดํ 2์๋ฆฌ)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
int main()
{
int a,jum;
float result = 0;
printf("๋ช๊ฐ์ ์ ์๋ฅผ ์
๋ ฅ ๋ฐ์ผ์๊ฒ ์ต๋๊น? ");
scanf("%d",&a);
for(int i=0;i<a;i++)
{
printf("์ ์๋ฅผ ์
๋ ฅํ์ธ์");
scanf("%d",&jum);
result += jum;
}
printf("ํ๊ท ์ %.2f ์
๋๋ค.",result/3);
}
|
cs |
๋ฐ์ํ