如何不用科学计数法显示阶乘?
计算100的阶乘,我不想让结果显示成科学计数的 怎么做?想要看到完整的整数#include <iostream>
using namespace std;
long double a=1;
long double b=2;
int c=1;
int main()
{
while (b<=100)
{
cout<<c<<'\t';
a*=b;
cout<<a<<endl;
b++;
c++;
}
cin.get();
return 0;
}
[ 本帖最后由 哈库拉玛塔塔 于 2014-6-28 11:57 编辑 ]