/*
1. hello라고 말하기
printf("hello");
2. 시작하기 버튼을 클릭했을때
#include <stdio.h>
int main()
{
return 0;
}
규칙1. 명령의 끝에는 ;(세미콜론) 을 붙인다
*/
/*
#include <stdio.h>
int main()
{
printf("Hello");
return 0;
}
include 포함해라
<stdio.h> 를 포함해서 컴파일해라
std + io
standard 기본
io input+output 입출력
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0; //,main이라는 프로그램을 종료
//여기서부터 이 줄 끝날때까지주석
}
*/
/*
#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 ("special characters\n[\\n,\\\",\\\\] is very important.");
return 0;
}
출력문 printf
입력문 scanf
자료형
정수 ( integer -> int )
3 0 500 10000 -500
실수( floating point -> float)
3.14 0.7 -0.001
문자 ( character -> char) (캐릭터or 차 )
'a' 'b' '+' '\'
이름이 a이고 , 정수를 저장할 수 있는 변수 하나 만들어라
정수변수a 선언
int a;
정수 변수 a, b, c 선언
int a, b, c;
실수를 저장할수있는 변수 , 이름은 box인 변수 선언하기
float box;
문자변수 hello 선언하기
char hello;
1. 정수 변수 선언 (ok) int a;
2. 정수 변수 입력
3. 정수 변수 출력 (ok) printf("%d",a);
printf("int a;"); (x)
printf("%d",a); (o)
선언 입출력
정수 int %d
실수 float %f
문자 char %c
*/
/*
#include <stdio.h>
int main()
{
//int n = 50;
//printf("%d",n);
float a=10;
printf("%f",a);
return 0;
}
*/