📜  在 C++ 代码示例中获取整数输入

📅  最后修改于: 2022-03-11 14:44:52.137000             🧑  作者: Mango

代码示例1
#include 
using namespace std;
int main() {
  //Declare an int variable
  int a;
  //take input using the standard cin operator
  cin >> a;
  //display the integer
  cout << a;
  return 0;
}