/*
자료형
1. 정수 100 5000 0 -1 -30
integer -> int
2. 실수 2.3 3.14 -3.0 -6.45678
floating point -> float
3. 문자 'a' '!' '*' '+' ..
character -> char (캐릭터)
정수 int %d
실수 float %f
문자 char %c
&주소
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%04d-%02d",a,b);
// %2d : 정수 출력시 무조건 2칸을 차지해서 출력해라.
//%02d : 정수 출력시 무조건 2칸을 차지하는데,"빈칸은 0으로 채워서"
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int a, b, c;
scanf("%d.%d.%d", &a, &b, &c);
printf("%02d-%02d-%04d", c, b, a);
}
float a=1.1111111;
float a=1.55555;
printf("%f",a); //소수점 아래 6자리까지 출력
printf("%.3f",a);
#include <stdio.h>
int main()
{
float a;
scanf("%f", &a);
printf("%.2f", a);
return 0;
}
정수 int %d
long long int %lld
실수 float %f
double %lf
문자 char %c
산술 연산자 + - * / %
int + int -> int
int와 int를 계산할때는 overflow(넘침)가 발생 할 수 있따!!
꼭 강제형변환이 필요한지 확인 해보기!!
printf("%lld",(long long int)a+b);
*/
#include <stdio.h>
int main()
{
float a, b;
scanf("%f %f", &a, &b);
printf("%.2f", a*b);
return 0;
}
*/



