2016SDAU课程练习一_1012

1.题目编号
1012
2.简单题意
开方
3.解题思路形成过程
直接开方
4.感想
额,一开始想多了,以为电脑不能直接开方,结果能直接算出来也是醉了

#include<iostream>
#include<algorithm>
#include<string>
#include<cmath>
#include<vector>
#include<stdio.h>
#include<fstream>
using namespace std;

int main()
{
    ifstream cin ("nrj.txt");
    double a,b;
    while(cin>>a>>b)
    {
        //这里能用实在是太神奇了
        cout<<pow(b,1/a)<<endl;
    }
}

你可能感兴趣的:(2016SDAU课程练习一_1012)