/*
#include <stdio.h>
int main()
{
printf("123456");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0; //main프로그램을 끝내주세요
}
standard + input output+header
stdio.h라는 파일을 포함해서 컴파일하세요!
/ 슬래시
\ 백슬래시
\n
#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("'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,\nWorld!");
return 0;
}
변수 : 박스
자료=데이터 : 컴퓨터에 저장되는 모든 값
*************자료형********
정수 1 2 3 50 100 0
실수 3.14 1.1111
문자 'a' 'b' '+'
정수 integer -> int
실수 floating point -> float
문자 character -> char (차x캐x 캐릭터)
선언 입출력
정수 int %d
실수 float %f
문자 char %c
****************************
이름이 a이고, 정수를 저장할 수 있는 박스 한개 만들기
정수 변수 a 선언
int a;
float b;
char s;
int x=5,y=6;
#include <stdio.h>
int main()
{
int x;
// printf("x");
scanf("%d",&x);
printf("%d",x);
return 0;
}
int main()
{
int a;
scanf("%d",&a);
printf("%d",a);
return 0;
}
*/
#include <stdio.h>
int main()
{
char a;
scanf("%c",&a);
printf("%c",a);
return 0;
}