|
計算 2 的 16 次方
本帖最後由 葉桔良 於 2022-2-19 16:55 編輯
試利用 for 迴圈, 計算 2 的 16 次方 的值.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int res=1; //result
- for(int i=1; i<=16; i++)
- res*=2;
- cout<<"2的16次方: "<<res<<endl;
- system("pause");
- return 0;
- }
複製代碼 |
|