C1李老师
例子:加一
#include <bits/stdc++.h> using namespace std; int main() { int x; //先做一个整数房子x(存储单元) cin>>x; //输入数据到房子x cout<<x+1; //输出运算结果 return 0; }