007. 자료형 이해하기(char, int, double, bool, string)

jychan99·2021년 10월 1일
0

code

 #include <iostream>



using namespace std;



int main()

{

	//문자형 변수는 char로 선언한다. ''와 같이 쓰인다

	char character = 'C';

	//정수형은 int로 선언한다.

	int integer = 100;

	//실수형은 double로 선언한다. float도 있지만 C++에서는 double을 주로쓴다.

	double precision = 3.14141592;

	//논리형 변수이다. true또는 false만 할당할수있다.

	bool is_true = true;

	//문자열변수는 string으로 선언한다. ""와 같이 쓰인다.

	//C++문자열에서는 숫자, 문자, 특수문자를 섞어 사용이 가능하다.

	string word = "Hello World!";



	cout << "char : " << character << endl;

	cout << "int : " << integer << endl;

	cout << "double : " << precision << endl;

	cout << "bool : " << is_true << endl;

	cout << "string : " << word << endl;



	return 0;

}
profile
내가 지금 두려워 하고 있는 일이 바로 내가 지금 해야 할 일이다. 🐍

0개의 댓글

관련 채용 정보