#include using namespace std; int main() { cout<<"请输入一个大于1的整数:\n"; int x; cin>>x; if(x>1&&x<100) cout<<"x大于1小于100\n"; return 0; }