標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
tonyh
時間:
2014-8-9 17:06
標題:
pow() 函式 - 計算冪次與開根號
本帖最後由 tonyh 於 2014-8-9 17:17 編輯
利用pow() 函式, 設計一個可以輕鬆計算冪次與開根號的計算機.
[attach]940[/attach]
[attach]941[/attach]
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
re:
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-8-9 17:21
本帖最後由 張峻瑋 於 2014-8-9 17:24 編輯
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
re:
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-8-9 17:21
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double a,b;
re:
cout<<"請輸入底數: ";
cin>>a;
cout<<"請輸入指數: ";
cin>>b;
cout<<a<<"的"<<b<<"次方, 值為"<<pow(a,b)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-8-9 17:22
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
int main()
{ START:
double a, b;
cout << "請輸入底數:";
cin >> a;
cout << "請輸入指數:";
cin >> b;
cout << a << "的" << b << "次方, 值為" << pow(a,b) << endl;
system("pause");
goto START;
return 0;
}
複製代碼
作者:
劉得恩
時間:
2014-8-9 17:23
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
re:
cout<<"輸入底數:";
cin>>x;
cout<<"輸入指數:";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
goto re;
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-8-9 17:23
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
float x, y;
cout<<"輸入底數:";
cin>>x;
cout<<"輸入指數:";
cin>>y;
cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-8-9 17:25
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{ re:
double x;
int y;
cout<<"請輸入底數:";
cin>>x;
cout<<"請輸入指數:";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-8-9 17:25
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
re:
float x, y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-8-15 20:04
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
re:
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2