C++ entry plan (2)

Input and output

Enter description:

Enter an integer in the range of 32-bit signed integers

Output description:

Output this integer

Example

enter

3

Output

3

#include<iostream>
using namespace std;
int main()
{
    
    
    int b;
    cin>>b;
    cout<<b<<endl;
    return 0;
}

Guess you like

Origin blog.csdn.net/hx_521/article/details/108688042