/*
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
/
\n
*/
/*
#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;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello, World!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello,\nWorld!");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"c:\\test\"");
return 0;
}
변수 (박스)
박스를 만든다 : 변수를 선언한다
자료 데이터
자료형
정수 integer -> int
실수 부동소수점 floagintpoint -> float
문자 character -> char
*****************************
선언 입력/출력
정수 int %d
실수 float %f
문자 char %c
****************************
이름이 a인 정수를 담는 박스를 하나 만들어
: 정수 변수 a 선언
int a;
이름이 a인 정수를 담는 박스, b인 정수를 담는 박스 만들어
int a, b;
이름이 b인 실수를 담는 박스를 하나 만들기
: 실수 변수 b선언
>> float b;
문자 변수 box 선언
>>char box;
* 정수 하나를 a에 입력받기
scanf : 입력받을게
%d: 정수 하나
&a : a에 전달
scanf("%d",&a);
*정수를 두 개 받아서 순서대로 a, b에 입력받기
scanf("%d %d",&a,&b);
* 정수 a출력하기
printf("%d",a);
*/
/*
#include <stdio.h>
int main()
{
int n; //정수 변수 1개 선언
scanf("%d", &n); // 정수 변수에 입력받기
printf("%d", n);// 정수 변수에 있는 값 출력하기
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char n;
scanf("%c", &n);
printf("%c" , n);
}
*/
#include <stdio.h>
int main()
{
float n;
scanf("%f", &n);
printf("%f" , n);
return 0;
}



