/*
#include <stdio.h>
int main()
{
printf("hi");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello W\'orld\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}*/
/*#include <stdio.h>
int main()
{
printf("\'Hello\'");
return 0;
}
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}*/
/*#include <stdio.h>
int main()
{
printf("\"!@#$%%^&*()\"");
return 0;
}*/
/*#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
자료: 컴퓨터에 저장하는것
자료형 : 저장하는것의 종류
정수 1 2 3 4 ... 100 0 -10 -100 -5
실수(소수) 0.1 3.14 -5.78 -1.33333 ..
문자 'a' '2' '!' 'B' ..
정수 integer -> int
실수 floating point -> float
문자 character -> char (캐릭터)
////////자료형////////
정수 int %d
실수 float %f
문자 char %c
/////////////////////
char z;
scanf("%c",&z);
printf("%c",z);
int a ;
// 정수를 저장하는 박스 a를 만드세요
scanf("%d",&a);
//박스a에 정수를 입력받으세요
printf("%d",a);
//박스 a에 들어있는 정수를 출력하세요
*/
/*#include <stdio.h>
int main()
{
int a;
scanf("%d",&a);
printf("%d",a);
return 0;
}*/
/*
#include <stdio.h>
int main()
{
char ja;
scanf("%c",&ja);
printf("%c",ja);
return 0;
}
*/
#include <stdio.h>
int main()
{
float f;
scanf("%f",&f);
printf("%f",f);
return 0;
}



