gpt4 book ai didi

c - 提取由空格分隔的数字的最佳方法?在 C

转载 作者:太空宇宙 更新时间:2023-11-04 01:29:12 24 4
gpt4 key购买 nike

从用空格分隔的“55 117 28”中提取数字的最佳方法是什么,以便我将它们存储在变量中并在之后进行算术方程式。即:

用户输入:55 117 25...

printf(" The Total is %.2f\n", total);  // prints 197.00

printf(" The first number * secondNumber is %.2f\n", total); // prints 6435.00

编辑:同样为了说明这一点,我不是在寻找我的算术示例的答案,而是一种从用户输入中提取数字的方法,用空格分隔,例如“55 48 862 21”或者“45 89 631 574 85 12 745 685 2541...”等等

最佳答案

int x;
int sum = 0;


while ( scanf( "%d", &x ) > 0 ) sum += x;

如果你想从字符串中提取数字,例如

char numbers[] = "55 117 25";

那么你可以使用 sscanf 代替 scanf

例如

while ( sscanf( numbers, "%d", &x ) > 0 ) sum += x;

要读取一串数字,您可以使用函数 fgets

至于 float 的格式说明符,您已经在问题中指定了它。

关于c - 提取由空格分隔的数字的最佳方法?在 C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25838076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com