发布网友 发布时间:2022-04-25 19:09
共3个回答
热心网友 时间:2023-10-13 18:07
private int x;
public int getX(){
return x;
}
public void setX(int x){
if(x>=30&&x<=60){
this.x=x;
}
else{
//自己处理,语句可以自己写
}
}
热心网友 时间:2023-10-13 18:07
整个判断就行了呗。
if(x>60||x<30) return;
接下来再写你的代码就行了
热心网友 时间:2023-10-13 18:08
或者给个随机数,在30~60之间
自己查下API