C primer plus 练习题 第三章

5.

 1 #include <stdio.h>
 2 
 3 int main()
 4 {
 5     float you_sec;
 6     printf("请输入你的年龄:");
 7     scanf("%f", &you_sec);
 8     printf("年龄合计:%e 秒!
", you_sec * 3.156e7);
 9     getchar();
10     return 0;
11 }
原文地址:https://www.cnblogs.com/bjdxy/p/3825330.html