๋ฐ์ํ
๋ฌธ์ 05-1
1. x, y ๋ฅผ ์ ๋ ฅ๋ฐ์ ์ง์ฌ๊ฐํ์ ๋์ด ๊ตฌํ๊ธฐ
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include<stdio.h>
int main()
{
int x1,y1,x2,y2;
int result;
printf("์ข์๋จ์ ์ขํ๋ฅผ ์
๋ ฅ ํ์ธ์: ");
scanf("%d %d",&x1,&y1);
printf("์ฐ์๋จ์ ์ขํ๋ฅผ ์
๋ ฅํ์ธ์ : ");
scanf("%d %d",&x2,&y2);
result = (x2-x1)*(y2-y1);
printf("์ข์๋จ x:%d y:%d\n",x1,y1);
printf("์ฐ์๋จ x:%d y:%d\n",x2,y2);
printf("๋์ด : %d ",result);
}
|
cs |
2. ๋๊ฐ์ ์ค์๋ฅผ ์ ๋ ฅ๋ฐ์ double๋ณ์์ ์ ์ฅํ ์ฌ์น์ฐ์ฐ๊ฒฐ๊ณผ ์ถ๋ ฅ
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include<stdio.h>
int main()
{
double a,b;
printf("๋๊ฐ์ ์ค์ ์
๋ ฅ :");
scanf("%lf %lf",&a,&b);
printf("๋ง์
๊ฐ : %.1f\n",a+b);
printf("๋บผ์
๊ฐ : %.1f\n",a-b);
printf("๊ณฑ์
๊ฐ : %.1f\n",a*b);
printf("๋๋์
๊ฐ : %.1f\n",a/b);
}
|
cs |
-doubleํ์ผ๋ก scanf์ ๋ ฅ๋ฐ์๋ %lf๋ฅผ ์ด์ฉํด์ผํจ, floatํ์ผ๋ %f๋ก!
4.์์คํค์ฝ๋๊ฐ์ ์ ์ํํ๋ก ์ ๋ ฅ๋ฐ์ํ ๋ฌธ์๋ฅผ ์ถ๋ ฅ
1
2
3
4
5
6
7
8
9
10
11
|
#include<stdio.h>
int main()
{
int a;
printf("์์คํค์ฝ๋ ์ ์๊ฐ ์
๋ ฅ: ");
scanf("%d",&a);
printf("์์คํค์ฝ๋ ๋ฌธ์๊ฐ์ : %c",a);
}
|
cs |
5.์ํ๋ฒณ ํ๋๋ฅผ ์ ๋ ฅ๋ฐ์ ์์คํค์ฝ๋๊ฐ ์ถ๋ ฅ
1
2
3
4
5
6
7
8
9
10
11
|
#include<stdio.h>
int main()
{
char a;
printf("๋ฌธ์ ์
๋ ฅ: ");
scanf("%c",&a);
printf("์์คํค์ฝ๋ ๋ฌธ์๊ฐ์ : %d",a);
}
|
cs |
๋ฐ์ํ