第二个if处69≤i≤90要用&&连接不要写成数学形式
中间那段这么改,供参考:
if (i >= 90) { printf("A"); } else if(i >= 60 && i < 90) { printf("B"); } else if(i < 60) printf("C");