scanf 使用 %f 表示整数

发布于 2024-12-02 20:56:17 字数 268 浏览 1 评论 0原文

我正在尝试解析一个由空格分隔的数字的字符串。但是,这些数字可以是整数或浮点数。 scanf 中有没有一种方法可以将整数和数字解析为一个集体浮点数?

例如:

float arg1, arg2 = 0;
sscanf("LINE 10 10", "LINE %f %f", &arg1, &arg2);

// and
sscanf("LINE 10.0 10.0", "LINE %f %f", &arg1, &arg2);

I am trying to parse a string that has some numbers seperated by a space. However, these numbers could be integers or floats. Is there a way in scanf to parse both integers and numbers as one collective float?

For example:

float arg1, arg2 = 0;
sscanf("LINE 10 10", "LINE %f %f", &arg1, &arg2);

// and
sscanf("LINE 10.0 10.0", "LINE %f %f", &arg1, &arg2);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

匿名的好友 2024-12-09 20:56:17

它只是有效的,整数是浮点数的特殊情况。

但请注意,大整数可能无法用浮点数精确表示(例如1e9 + 1),但我认为您不必为此担心。

It just works, integers are special cases of floating points.

Note, however, that large integers might not be able to be represented precisely by floats (eg. 1e9 + 1), but I don't think you bother about that.

夏の忆 2024-12-09 20:56:17

事实证明我的测试是错误的,你可以用 %f 读取整数。

Turns out my tests were wrong, you can read from an integer with %f.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文