1108. Finding Average (20) sscanf() sprintf()

简介: #include #include #include #include #include using namespace std;//sscanf() – 从一个字符串中读进与指定格式相符的数据//sprintf() – 字符串格式化命令,主要功能是把格式化的数据写入某个字符串中。

#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <string.h>
using namespace std;
//sscanf() – 从一个字符串中读进与指定格式相符的数据
//sprintf() – 字符串格式化命令,主要功能是把格式化的数据写入某个字符串中。
int main() {
    int n, cnt = 0;
    double sum = 0, t;
    char a[50], b[50];
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a;
        sscanf(a, "%lf", &t);//从字符串中读出
        sprintf(b, "%.2lf", t);//写入字符串
        int flag = 0;
        for (int j = 0; j < strlen(a); j++) {
            if(a[j] != b[j]) flag = 1;
        }
        if(flag || t < -1000 || t > 1000) {
            printf("ERROR: %s is not a legal number\n", a); continue;
        }else{
            sum += t;
            cnt++;
        }
    }
    
    if(cnt == 0) cout << "The average of 0 numbers is Undefined\n";
    else if(cnt == 1) printf("The average of 1 number is %.2lf\n", sum);
    else printf("The average of %d numbers is %.2lf\n", cnt, sum / cnt);
    
    return 0;
}


目录
相关文章
|
存储 C语言
【CSAPP随笔】CH3:Bits, Bytes, and Integers
【CSAPP随笔】CH3:Bits, Bytes, and Integers
79 0
|
7月前
gets()&puts()函数
gets()&puts()函数。
44 2
|
调度 索引
NR PUCCH(一) PUCCH format 0/1
NR中PUCCH物理信道用来发送上行控制信息Uplink Control Information(UCI),当然UCI也可以在PUSCH上发送。UCI 内容包括:CSI,HARQ ACK/NACK ,SR 及上述三者的组合信息。
|
7月前
|
数据格式
sprintf函数
sprintf函数
98 0
|
IDE Go 开发工具
Go基础:格式化输出--Printf、Sprintf、Fprintf
Go基础:格式化输出--Printf、Sprintf、Fprintf
509 0
HDOJ 1004题 Let the Balloon Rise strcmp()函数
HDOJ 1004题 Let the Balloon Rise strcmp()函数
106 0
sprintf你知道多少(转)
第一个打出来的肯定不是正确结果,原因跟前面提到的一样,参数压栈时调用者并不知道跟i相对应的格式控制符是个”%f”。而函数执行时函数本身则并不知道当年被压入栈里的是个整数,于是可怜的保存整数i 的那4 个字节就被不由分说地强行作为浮点数格式来解释了,整个乱套了。
1178 0
|
API
[LeetCode]--374. Guess Number Higher or Lower
We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which number I picked. Every time you guess wrong, I’ll tell you whether the number i
1122 0