给定的任务是从用户那里获取一个整数作为输入,并以C++语言打印输出该整数。
在下面的程序中,以C++语言显示将整数作为用户输入的语法和过程。
脚步:
- 询问时,用户输入一个整数值。
- 该值是通过cin方法从用户那里获取的。在C++中,cin方法从控制台将值读取到指定的变量中。
句法:
cin >> variableOfXType; where >> is the extraction operator and is used along with the object cin for reading inputs. The extraction operator extracts the data from the object cin which is entered using the keyboard.
- 对于整数值,将X替换为int类型。 cin方法的语法如下:
句法:
cin >> variableOfIntType;
- 现在,此输入值存储在variableOfIntType中。
- 现在要打印此值,将使用cout方法。 C++中的cout方法在控制台屏幕上打印作为参数传递给它的值。
句法:
cout << variableOfXType; where << is the insertion operator. The data needed to be displayed on the screen is inserted in the standard output stream (cout) using the insertion operator (<
- 对于整数值,将X替换为int类型。然后,cout()方法的语法如下:
句法:
cout << variableOfIntType;
- 因此,成功读取并打印了整数值。
程序:
C++
// C++ program to take an integer
// as input and print it
#include
using namespace std;
int main()
{
// Declare the variables
int num;
// Input the integer
cout << "Enter the integer: ";
cin >> num;
// Display the integer
cout << "Entered integer is: " << num;
return 0;
}
输出:
Enter the integer: 10
Entered integer is: 10
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。