主要就是四舍五入,用round函数四舍五入,ceil函数进一,floor函数去尾(对正数而言)
#include<bits/stdc++.h>
using namespace std;
int n,k;
int main()
{
cin>>n;
int pass=0;
int good=0;
for(int i=0;i<n;i++)
{
cin>>k;
if(k>=60) pass++;
if(k>=85) good++;
}
double a=(double)pass*100/n;
double b=(double)good*100/n;
cout<<round(a)<<'%'<<endl<<round(b)<<'%';
return 0;
}