
1条回答 默认 最新
qq_41851997 2021-11-16 10:15关注int out(int x) { if(x<-2) return 2*x+1; else if(x>2) return sin(x+5); else return x-1; }本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
int out(int x)
{
if(x<-2) return 2*x+1;
else if(x>2) return sin(x+5);
else return x-1;
}