標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
tonyh
時間:
2020-4-17 19:37
標題:
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;
}
複製代碼
作者:
林政瑜
時間:
2020-4-17 19: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;
}
複製代碼
作者:
孫嘉駿
時間:
2020-4-17 19:48
#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;
}
複製代碼
作者:
陳宥穎
時間:
2020-4-17 19:50
#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;
}
複製代碼
作者:
董宸佑
時間:
2020-4-17 19:50
#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;
}
複製代碼
作者:
黃宥華
時間:
2020-4-17 19:50
#include<cstdlib>
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
double o,p;
cout<<"請輸底數";
cin>>o;
cout<<"請輸指數";
cin>>p;
cout<<o<<"的"<<p<<"次方為"<<pow(o,p);
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2020-4-17 20:03
#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;
}
複製代碼
作者:
李宇澤
時間:
2020-4-17 20:06
#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;
}
複製代碼
作者:
余有晉
時間:
2020-4-17 20:07
#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;
}
複製代碼
作者:
黃辰昊
時間:
2020-4-24 18:25
#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