欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

第五章 练习4

程序员文章站 2022-03-06 08:28:56
...
#include<iostream>
#include<iomanip>
#include<cstdio>
using namespace std;

int main()
{
double a;
   cout<<"输入:"; 
   scanf("%lf",&a);
   printf("%f \n%0.6f \n%e \n%g",a,a,a,a);
   return 0; 
}

结果:

第五章 练习4