/先统计出所有参赛者积分中比小美分低的人数count,如果人数count >= n - 1,小美最多能到最后一轮(注意题中给出的初始为第0轮),如果count < n - 1,假定每次比赛小美都和比他积分低的人比,统计小美比赛次数,就是小美最多能到的轮数。/ include using namespace std; int power(int x){ int n = 0; while(x >= 2){ x /= 2; n++; } return n;} int main(){ int i, n, count, coun...