標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
陳品肇
時間:
2019-4-19 22:17
標題:
pow() 函式 - 計算冪次與開根號
利用pow() 函式, 設計一個可以輕鬆計算冪次與開根號的計算機.
[attach]6311[/attach][attach]6312[/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-4-20 16:50
#include<iostream>
#include<cstdlib>
#include<string>
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-4-20 16:52
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double a,b;
re:
cout<<"請輸入底數: ";
cin>>a;
cout<<"請輸入指數: ";
cin>>b;
cout<<a<<"的"<<b<<"次方, 值為"<<pow(a,b)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-4-20 16:52
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
re:
cout<<"請輸入底數:"<<endl;
cin>>x;
cout<<"請輸入指數:"<<endl;
cin>>y;
cout<<x<<"的"<<y<<"次方 ,值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2019-4-20 16:53
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x,y;
re:
cout<<"請輸入底數"<<endl;
cin>>x;
cout<<"請輸入指數"<<endl;
cin>>y;
cout<<x<<"的"<<y<<"次方值為"<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
戴安利
時間:
2019-4-20 16:55
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
double x, y;
re:
cout<<"*****************"<<endl;
cout<<"請輸入底數: "<<endl;
cin>>x;
cout<<"請輸入指數: "<<endl;
cin>>y;
cout<<x<<"的"<<y<<"次方為: "<<pow(x,y)<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-4-20 16:55
#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-5-2 17:16
#include<iostream>
#include<cstdlib>
#include<cmath>
using namespace std;
int main()
{
re:
system("cls");
double x ,y;
cout<<"請輸入底數:";
cin>>x;
cout<<"請輸入指數:";
cin>>y;
cout<<x<<"的"<<y<<"次方:"<<pow(x,y)<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2