第一题 AC100 做法有点笨😂 public int numberofprize (int a, int b, int c) { // write code here int res = Math.min(a,Math.min(b,c)); //手动模拟 while(Math.min(a,Math.min(b,c)) >= res){ //第一次减,从最大的数减1 if (a >= b && a >= c){ ...