第五章 练习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;
}