/* 주석 ( 주석으로 되어있느부분은 준우만 볼 수있어요!)
#include <stdio.h>
int main()
{
printf("1234568");
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
printf("Hello");
return 0; //main 프로그램 종료해주세요
}
*/
/*
#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}
include : 포함해라!
stdio.h라는 파일을 포함해서 컴파일(번역)해라!
std + i + o + h
std : standard 기본
i : input 입력
o : output 출력
*/
/*
#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;
}
변수 : 박스
데이터 or 자료 : 박스에 담는 물건
************************ 자료형 **********************
정수 int 숫자 - 소수점 아래 없는거 10 500 -100 ..
실수 float 숫자 - 소수점 아래 있는거 3.14 -2.123
문자 char 키보드 한 알 'a' 'b' '+' '%'
****************************************************
1. 변수 선언
문제1번. 정수를 담을 수 있는 이름이 a인 변수를 만들어주세요
정수 변수 a 선언
int a; 인트
int box;
int junwoo;
실수 변수 b 선언
float b; 플로트
char t; 캐릭터 (별명: 차)
문제 2번. 정수 변수 a를 10이라고 하자.
a = 10;
문제 3번. 정수 변수 a에 들어있는 정수를 출력해주세요
printf("a");
****** 자료형 *********
선언 입출력
정수 int %d
실수 float %f
문자 char %c
*********************
#include<stdio.h>
int main()
{
int a; // 정수 변수 선언!
a = 10; // 정수 변수 a를 10이라고 하자!
printf("%d",a); //정수 변수에 들어잇는 숫자 보여주세요!!
return 0;
}
quiz!!
실수 변수를선언하고, 3.14를 담은다음에 출력해주세요
#include<stdio.h>
int main()
{
float b;
//b=3.14;
scanf("%f",&b); // b에다가 실수 전달해주세요
printf("%f",b);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int t;
scanf("%d",&t);
printf("%d",t);
return 0;
}
#include<stdio.h>
int main()
{
char u;
scanf("%c",&u);
printf("%c",u);
return 0;
}
*/