標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
tonyh
時間:
2016-2-5 19:25
標題:
pow() 函式 - 計算冪次與開根號
本帖最後由 tonyh 於 2016-2-5 19:34 編輯
利用pow() 函式, 設計一個可以輕鬆計算冪次與開根號的計算機.
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2016-2-5 19:38
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2016-2-5 19:40
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main(){
double x, y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方為: "<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2016-2-5 19:42
#include<cstdlib>
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
double x,y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2016-2-5 19:42
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2016-2-5 19:58
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方, 值為"<<pow(x,y)<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2