1108 Finding Average (20)(字符串)
题意:
求一系列输入的平均值,其中有的输入不合法
思路:
这题本身就判断一下就行,主要是记录一下sscanf和sprintf的用法:
sscanf() – 从一个字符串中读进与指定格式相符的数据
sprintf() – 字符串格式化命令,主要功能是把格式化的数据写入某个字符串中。
注意sscanf()要提取值必须完全与格式匹配,所以abc11.654这种格式是不行的,只能是11.4546aa这种格式。
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
scanf("%d", &n);
double sum = 0.0,temp;
int count = 0;
char a[50], b[50];
for (int i = 0; i < n; i++) {
scanf("%s", a);
sscanf(a, "%lf", &temp);
sprintf(b, "%.2lf", temp);
//cout << a << " " << temp << " " << b << endl;
bool flag = true;
for (int j = 0; j < strlen(a); j++) {
if (a[j] != b[j]) {
flag = false;
break;
}
}
if (!flag || temp < -1000 || temp>1000) {
printf("ERROR: %s is not a legal number\n", a);
} else {
sum += temp;
count++;
}
}
if (count == 0) {
printf("The average of 0 numbers is Undefined\n");
} else if(count==1){
printf("The average of 1 number is %.2lf\n", sum);
} else {
printf("The average of %d numbers is %.2lf\n", count, sum / count);
}
return 0;
}