在天梯模式里我手写的输出,累死了也紧张死了,现在满身的荣誉感
#include <iostream>
#include <cstdio>
using namespace std;
typedef long long ll;
ll n,a,c=0,r=0,f=0,s;
char p;
int main()
{
scanf("%lld",&n);
for(;n--;)
{
scanf("%lld %c",&a,&p);
if(p=='C')c+=a;
else if(p=='R')r+=a;
else f+=a;
}s=c+r+f;
printf("Total: %lld animals\nTotal coneys: %lld\nTotal rats: %lld\nTotal frogs: %lld\nPercentage of coneys: %.2lf %\nPercentage of rats: %.2lf %\nPercentage of frogs: %.2lf %",s,c,r,f,c*100.0/s,r*100.0/s,f*100.0/s);
return 0;
}
输出也可以循环,不然手写输出太累了
有理有据,大样本的话数组输出更好
我的代码风格大概与众dalao不一样吧qwq
当时超级紧张,打错一个字母或者区分错误大小写还有空格的话这道题我就A不了