標題:
【課堂練習】計算 2 的 16 次方
[打印本頁]
作者:
陳育霖
時間:
2023-6-12 23:10
標題:
【課堂練習】計算 2 的 16 次方
試利用 for 迴圈, 計算 2 的 16 次方 的值.
本帖隱藏的內容需要回復才可以瀏覽
作者:
楊承樺
時間:
2023-6-13 20:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=1;
for(int b=1;b<=16;b++)
a=a*2;
cout<<"2 的16 次方為: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林家鉌
時間:
2023-6-13 20:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int u=1;
for(int i=16;i>0;i--)
{
u=u*2;
}
cout<<"2 to the 16th power is "<<u<<"\n";
system("pause");
return 0;
}
複製代碼
作者:
陳沁寧
時間:
2023-6-13 20:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int n = 1;
for(int i = 0; i < 16; i++){
n = n * 2;
}
cout << "2的16次方為:" << n << endl;
system("pause");
return 0;
}
複製代碼
作者:
李晨希
時間:
2023-6-13 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=1;
for(int i=0;i<16;i++)
a=a*2;
cout<<"2 的 16 次方為: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳姿瑜
時間:
2023-6-13 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1;
for(int i=0;i<16;i++)
{
n=n*2;
}
cout<<"2的16次方為: "<<n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孟涵
時間:
2023-6-13 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int k=1;
for(int i=0; i<16; i++)
k=k*2;
cout<<"2 的16 次方為: "<<k<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐楷恩
時間:
2023-6-13 20:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1;
for(int i=0;i<16;i++)
{
n=n*2;
}
cout<<"2 的16 次方為: "<<n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭宏宇
時間:
2023-6-13 20:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=1;
for(int i=0;i<16;i++)
{
a=a*2;
}cout<<"2的16次方為: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃郁甯
時間:
2023-6-13 20:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=1;
for(int i=0; i<16; i=i+1)
n=n*2;
cout<<n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王閎民
時間:
2023-6-13 20:57
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{ int n=1;
for(int i=1;i<=16;i++)
{
n=n*2;
}
cout<<"2的16次方為: "<<n;
system("pause");
return 0;
}
複製代碼
作者:
李東諺
時間:
2023-7-5 22:51
回復
1#
陳育霖
作者:
李昱辰
時間:
2024-7-11 19:53
#include<iostream>
using namespace std;
int main()
{
int res=1;
for(int i=1;i<=16;i++)
{
res*=2;
}
cout<<res<<endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2