標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
王瑞喻
時間:
2020-3-26 23:45
標題:
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-3-28 07:58
#include<iostream>
#include<cstdlib>
#include<time.h>
#include<math.h>
using namespace std;
int main()
{
double x,y;
cout<<"請輸入底數:";
cin>>x;
cout<<"請輸入指數:";
cin>>y;
cout<<"x的y次方為"<<pow(x,y);
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2020-3-28 09:21
#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-3-28 10: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;
}
複製代碼
作者:
蔡少宇
時間:
2020-3-28 10:28
#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-3-28 10:38
#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<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2020-3-28 10:44
#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 ;
}
複製代碼
作者:
曾宥程
時間:
2020-3-28 10:44
#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;
}
複製代碼
作者:
鄭羽捷
時間:
2020-3-28 11:01
#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-2 11:26
#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);
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-10-21 17:15
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2