我一次性AC这道题,用时10分钟
#include<iostream>
#include<iomanip>
using namespace std;
double a[12][12];
int main()
{
// freopen("xxx.in","r",stdin);
// freopen("yyy.out","w",stdout);
double he=0;
int js=0;
char b;
cin >> b;
for(int i=0;i<12;i++)
{
for(int j=0;j<12;j++)
{
cin >> a[i][j];
if(i+j>11 && j>i)
{
he+=a[i][j];
js++;
}
}
}
if(b=='S')
{
cout << fixed << setprecision(1) << he;
}
else
{
cout << fixed << setprecision(1) << (he/js);
}
// fclose(stdin);
// fclose(stdout);
return 0;
}