如何将从文件扫描的数字 x 舍入到从 C 中的同一文件扫描的 i 小数位?

发布于 2024-11-03 09:20:44 字数 180 浏览 0 评论 0原文

R xi [舍入实数] 将双精度值 x 四舍五入到 i 个有效小数位

示例: 这是从文件中扫描的:R 3.1415 2
所以我需要打印出 3.14

做一个大循环,还有其他功能 到目前为止:
else if (操作==“R”) printf("\n");

不知道该放什么...帮忙?

R x i [Round Reals ]
Round double value x to i significant decimal places

example:
this is scanned from the file: R 3.1415 2
so I need to print out 3.14

doing a big loop, has other functions
so far:
else if (operate == "R")
printf("\n");

dont know what to put...help?

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

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

发布评论

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

评论(3

狼性发作 2024-11-10 09:20:44

试试这个:

double number;
int places;
fscanf(file, "%lf %d", &number, &places);
printf("%.*f\n", places, number);

Try this:

double number;
int places;
fscanf(file, "%lf %d", &number, &places);
printf("%.*f\n", places, number);
萌化 2024-11-10 09:20:44

printf('%.2f', your_number_var) 将格式化为两位小数。

printf('%.2f', your_number_var) will format to two decimal places.

白云不回头 2024-11-10 09:20:44

不要像其他人所说的那样sprintf你的格式字符串,你可以一次性完成所有事情:

printf("%.*f", precision, number)

Don't sprintf your format string like others say, you can do everything in one shot:

printf("%.*f", precision, number)

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