標題:
019_二次方計數器
[打印本頁]
作者:
游東祥
時間:
2015-5-23 11:37
標題:
019_二次方計數器
顯示 2 的次方 16 次
作者:
黃璽安
時間:
2015-5-23 11:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int j = 1;
for (int i = 1; i <= 16; i++)
{
j = j * 2;
cout << j << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翔
時間:
2015-5-23 11:51
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int i=1;
int j=1;
for(i;i<=16;i++)
{
j=j*2;
cout<<j<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-5-28 20:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int res=1;
for(int i=1; i<=16; i++)
res*=2;
cout<<"2的16次方"<<res<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2