C 语言实例 - 输出双精度(double)数
C 语言教程
· 2019-02-20 14:12:57
使用 printf() 与 %e 输出双精度数。
实例
#include <stdio.h>
int main() {
double d; // 声明双精度变量
d = 12.001234; // 定义双精度变量
printf("d 的值为 %e", d);
return 0;
}
输出结果:
d 的值为 1.200123e+01
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Programming Amazon Web Services
James Murty / O'Reilly Media / 2008-3-25 / USD 49.99
Building on the success of its storefront and fulfillment services, Amazon now allows businesses to "rent" computing power, data storage and bandwidth on its vast network platform. This book demonstra......一起来看看 《Programming Amazon Web Services》 这本书的介绍吧!