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;
}