題目描述:給定乙個double型別的浮點數base和int型別的整數exponent。求base的exponent次方。
輸入:輸入可能包含多個測試樣例。
對於每個輸入檔案,第一行輸入乙個整數t,表示測試案例的數目,接下來的t行每行輸入乙個浮點數base和乙個整數exponent,兩個數中間用乙個空格隔開。
輸出:對應每個測試案例,
輸出乙個浮點數代表答案,保留兩位小數即可。
樣例輸入:
51.0 10
0.0 -5
1.0 0
1.2 5
2.0 -1
樣例輸出:
1.00e+00finf1.00e+00f
2.49e+00f
5.00e-01f
#include
#include
int main()}}
九度 題目1514 數值的整數次方
時間限制 1 秒 記憶體限制 128 兆 特殊判題 否 提交 785 解決 210 題目描述 給定乙個double型別的浮點數base和int型別的整數exponent。求base的exponent次方。輸入 輸入可能包含多個測試樣例。對於每個輸入檔案,第一行輸入乙個整數t,表示測試案例的數目,接下...
數值整數次方
題目 實現函式double power double base,int exponent 求base的exponent次方。不得使用庫函式,同時不需要考慮 大數問題。includebool equal double num1,double num2 double powerwithunsignede...
數值整數次方
題目 實現函式double power double base,int exponent 求base的exponent次方。不得使用庫函式,同時不需要考慮 大數問題。includebool equal double num1,double num2 double powerwithunsignede...