標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
tonyh
時間:
2021-5-8 20:10
標題:
pow() 函式 - 計算冪次與開根號
利用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;
}
複製代碼
作者:
林鼎傑
時間:
2021-5-8 20:24
#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;
}
複製代碼
作者:
許洧熏
時間:
2021-5-8 20:33
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
re:
double x,y;
cout<<"請輸入底數: ";
cin>>x;
cout<<"請輸入指數: ";
cin>>y;
cout<<x<<"的"<<y<<"次方,值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-5-8 20: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;
}
複製代碼
作者:
呂尚霖
時間:
2021-5-8 20:41
#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;
}
複製代碼
作者:
朱奕祐
時間:
2021-5-8 20:41
#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;
}
複製代碼
作者:
王秉鈞
時間:
2021-5-8 20:45
#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;
}
複製代碼
作者:
王宇崴
時間:
2021-5-8 20:46
#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;
}
複製代碼
作者:
俞成章
時間:
2021-5-15 18:32
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2