Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++에서 정수 값을 읽고 인쇄하는 방법

<시간/>

여기서 우리는 사용자로부터 정수를 읽고 C++로 표시하는 방법을 볼 것입니다. 입력을 받기 위해 cin 연산자를 사용하고 표시하기 위해 cout 연산자를 사용합니다. 구문은 다음과 같습니다 -

입력 -

int x;
cin >> x;

출력 -

int x = 110;
cout << x;

예시

#include<iostream>
using namespace std;
int main(int argc, char const *argv[]) {
   int x;
   int y = 50;
   cout << "Enter some value: ";
   cin >> x;
   cout << "The given value is: " << x << endl;
   cout << "The value of y is: " << y;
}

출력

Enter some value: 100
The given value is: 100
The value of y is: 50