发布网友
共1个回答
热心网友
public int t(int a,int b,int c){
if(a<b){
if(a<c){
return a;
}else{
return c;
}
}else if(b<c){
return b;
}else {
return c;
}
}