/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("special characters\n");
printf("[\\n,\\\",\\\\] is very important.");
return 0;
}
변수 : 자료를 담는 박스
자료형
정수 5 10 100 0 -50 (소수점아래없는거)
실수 3.141592 -0.21 0.8888 (소수점있는거)
문자 'a' 'b' '@' ';' '*' (키보드 한 알 )
정수 integet -> int
실수 floating point -> float
문자 character -> char (캐릭터)
이름이 a이고 정수를 담는 변수를 하나 만들어주세요
정수 변수 a 선언
int a;
실수 변수b 선언
float b;
char box;
***********************
정수 변수 a의 값 출력
printf("a"); (x)
#include <stdio.h>
int main()
{
int a;
printf("%d",a);
return 0;
}
*******자료형************
선언 입출력
정수 int %d
실수 float %f
문자 char %c
************************
*/
/*
#include<stdio.h>
int main()
{
char m;
scanf("%c",&m);
printf("%c",m);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
float s;
scanf("%f",&s);
printf("%f",s);
return 0;
}
*/
#include<stdio.h>
int main()
{
int k100;
scanf("%d")
}