標題:
2023/11/04 課堂重點(頤寬)
[打印本頁]
作者:
陳育霖
時間:
2023-10-31 17:57
標題:
2023/11/04 課堂重點(頤寬)
本帖最後由 陳育霖 於 2023-11-4 15:00 編輯
今日上課重點:
複習
for 迴圈 (五)
計算333~999間所有3的倍數總和
小星星 1
小星星 2
數青蛙 (二)
小星星 3
今日作業:
Typing Club 6頁
數青蛙 (二)
計算333~999間所有3的倍數總和
今日考試:
巢狀迴圈 - 九九乘法表 (二)
下次考試:
計算 2 的 16 次方
作者:
陳頤寬
時間:
2023-11-4 14:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i = 1;i < 8;i++)
{
cout<<"第"<<i<<"隻青蛙, 有"<<i<<"張嘴, " <<i*2<<"顆眼睛和"<<i*4<<"條腿. ";
for(int j = 0 ;j < i ;j++)
{
cout<<"噗通~";
}
cout<<"跳下水!\n";
}
system("pause");
return 0;
}
複製代碼
作者:
陳頤寬
時間:
2023-11-4 19:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum = 0;
for(int i = 333;i < 1000;i+=3)
{
sum += i;
}
cout <<"333~999間所有3的倍數總和為: "<< sum << endl;
system("pause");
return 0;
}
作者:
陳頤寬
時間:
2023-11-10 20:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << "(輸入0以下的數字可重新輸入)" << endl;
int XXX=0, OOO, XOX=1,r=0;
re:
cout << "-------------------------------------" << endl;
cout << "請輸入一整數: ";
cin >> XXX;
if (XXX < 0)
{
goto re;
}
cout << "請輸入整數的次方: ";
cin >> OOO;
if (OOO < 0)
{
goto re;
}
for (int i = 1; i <= OOO; i++)
{
XOX *= XXX;
}
cout << XXX << "的" << OOO << "次方是" << XOX << endl;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2