標題:
pow() 函式 - 計算冪次與開根號
[打印本頁]
作者:
許婷芳
時間:
2020-4-17 19:02
標題:
pow() 函式 - 計算冪次與開根號
本帖最後由 許婷芳 於 2020-4-17 20:33 編輯
利用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 20:21
此帖僅作者可見
作者:
林祐霆
時間:
2020-4-17 20:21
此帖僅作者可見
作者:
謝以恩
時間:
2020-4-17 20:22
此帖僅作者可見
作者:
尤爾呈
時間:
2020-4-17 20:24
此帖僅作者可見
作者:
廖文綺
時間:
2020-4-17 20:24
此帖僅作者可見
作者:
蘇韋誠
時間:
2020-4-17 20:25
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2