標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
陳品肇
時間:
2019-7-6 12:52
標題:
pow() 函式 - 計算冪次與開根號
本帖最後由 陳品肇 於 2019-7-6 12:54 編輯
利用pow() 函式, 設計一個可以輕鬆計算冪次與開根號的計算機.
[attach]6827[/attach]
[attach]6828[/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;
}
複製代碼
作者:
吳孟書
時間:
2019-7-6 14:07
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double a,b;
cout<<"請輸入底數:";
cin>>a;
cout<<"請輸入指數:";
cin>>b;
cout<<a<<"的"<<b<<"次方, 值為"<<pow(a,b)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-7-6 14:09
本帖最後由 曲書辰 於 2019-7-6 14:11 編輯
#include<iostream>
#include<cstdlib>
#include<cmatch>
using namespace std;
int main()
{
double a,b;
cout<<"底數為:";
cin>>a;
cout<<"指數為:";
cin>>b;
cout<<a<<"的"<<b<<"次方:"<<pow(a,b)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-7-6 14:10
#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;
}
複製代碼
作者:
吳孟修
時間:
2019-7-6 14:10
#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;
}
複製代碼
作者:
洪寬瀧
時間:
2019-7-6 14:13
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double bp,gv;
re:
cout<<"請輸入底數:"<<endl;
cin>>bp;
cout<<"請輸入指數:"<<endl;
cin>>gv;
cout<<bp<<"der"<<gv<<"次方,值為"<<pow(bp,gv)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-7-6 15:03
#include<iostream>
#include<cstdlib>
#inclued<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