[C_MM09-易] 計算 i 次方的值
- #include <iostream>
- #include<math.h>
- using namespace std;
- int main() {
- int i, result;
- while(cin >> i)
- {
- result = pow(2, i);
- if(i > 31)
- {
- cout << "Value of more than 31" << endl;
- }
- else
- {
- cout << result << endl;
- }
- }
- return 0;
- }
沒有留言:
張貼留言