问题标题: 1376我哪错了???(90分)

0
0
已解决
陶旭杰
陶旭杰
中级光能
中级光能
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
    double a,c;int b;
    cin>>a>>b;
    c=pow(a,b);
    printf("%.01f",c);
    return 0;
}

 


0
已采纳
蒋智航
蒋智航
高级天翼
高级天翼

 cc=pow(a,b);
    printf("%.1f",int(cc*10+0.5)/10.0);
 

0
我要回答