#include<stdio.h> int main() { int x,y; printf("输出x的值:"); scanf("%d",&x); if(x<20) y=x+10; if(x>=20 && x<=100) y=x; if(x>100) y=x-100; printf("%d",y) return 0; }