问题标题: 如何在c++上输出7.62*10的12次方(每一位的数字都要出来)

0
0

0
已采纳
张俊洋
张俊洋
资深守护
资深守护

#include<math.h>
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
int y;

y=pow(7.62*10,12);//算出7.62乘十的平方是多少。

cout<<y<<endl;//最后输出。

return 0;

}

张俊洋在2018-11-12 18:09:55追加了内容

望采纳!!!

0
高梓荣
高梓荣
新手天翼
新手天翼
#include<bits/stdc++.h>
using namespace std;
int main()
{
    输出<<"7620000000000";
    return 0;
}

 

0
王学庚
王学庚
初级光能
初级光能

cout<<pow(76.2,10);

加cmath头文件

望采纳

0
0
高梓荣
高梓荣
新手天翼
新手天翼
#include<bits/stdc++.h>
using namespace std;
int main()
{       
    输出<<pow(76.2,10);
    return 0;
}

 

0
我要回答