/*
#include <stdio.h>
int main()
{
// printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("안녕");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
/ 슬래시
\ 백슬래시
컴파일 : ( c언어 -> 기계어 ) 번역하는 과정
include 포함해라!
stdio.h라는 파일을 포함해서 컴파일해라!
std + io : standard input output
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0; // 프로그램 종료해.
}
줄바꿈 \n
작은따옴표 \' -> '
큰따옴표 \" -> "
*/
/*
#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;
}
*/
/*
변수 : 데이터를 저장하는 공간
******데이터의 종류 (자료형)*************
정수 (숫자, 소수점 x) 0 500 -10
실수 (숫자, 소수점 o) 3.14 0.07 -3.08
문자 (키보드 한 알) 'a' 'b' '%' '+'
정수 integer -> int
실수 floating point -> float
문자 character -> char (캐릭터 or 차)
선언 입출력
정수 int %d
실수 float %f
문자 char %c
1. 명령 끝에는 ; (세미콜론)을 붙인다.
2. scanf에는 변수 앞에 & 주소연산자를 붙인다.
#include <stdio.h>
int main()
{
int a;
//a = 50;
printf("정수 하나를 입력하세요 >>");
scanf("%d",&a);
printf("당신이 입력하신 숫자는");
printf("%d",a);
printf("입니다.");
// float a;
// a = 50.5;
// printf("%f",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char a;
scanf("%c",&a);
printf("%-c",a);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
float a;
scanf("%f",&a);
printf("%f",a);
return 0;
}
*/