標題:
2024/01/20 課堂重點
[打印本頁]
作者:
陳育霖
時間:
2024-1-20 09:56
標題:
2024/01/20 課堂重點
本帖最後由 陳育霖 於 2024-1-20 10:02 編輯
今日重點:
複習
兩數對調
檢討並完成
[挑戰題1]我是電視迷_b877
abs() 絕對值
求最大公因數 (輾轉相除法)
因數分解 (六) - 求最大公因數 (break敘述)
作業:
計算333~999間所有3的倍數總和
[挑戰題2] 金貓、銀貓、呆若木喵
打字練習網
完成
英文字母
Q列第一關到第三關
今日考試:
卷五 (if...else if...else)
卷六 (if...else if...else & switch)
下次考試:
卷七
作者:
黃子瑞
時間:
2024-1-24 19:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=333; i<=999; i+=3)
sum+=i;
cout<<"333+336+339+...+999="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
詠綺
時間:
2024-1-27 17:41
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a=0;
for(int i=333;i<1000;i+=3)
{
a=a+i;
}
cout<<"333~999間所有3的倍數總和:"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇巳權
時間:
2024-1-27 19:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=333; i<=999; i+=3)
sum+=i;
cout<<"333+336+339+...+999="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳品瑞
時間:
2024-1-27 19:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
cout<<"333~999間所有3的倍數總和為: ";
for(int i=333;i<=999;i=i+3)
{
sum=sum+i;
}
cout<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥澄
時間:
2024-1-27 19:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=0;
for(int i=333; i<1000; i+=3)
{
x=x+i;
}
cout << "333+336+339+...+996+999=";
cout << x << endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭以樂
時間:
2024-1-27 19:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
for(int i=333; i<=999; i+=3)
{
sum+=i;
}
cout<<"333+336+339+...+999="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
作者:
詠綺
時間:
2024-1-27 20:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請問你掉進湖裡的是什麼貓貓(請輸入數字,0=呆若木喵1=銀貓貓,2=金貓貓)";
cin>>a;
cout<<"你需要回答:";
cout<<(a+1)%3<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張凱焱
時間:
2024-2-3 11:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=0;
for(int i=333;i<1000;i=i+3)
{
n=n+i;
}
cout<<"333~999間所有3的倍數總合為: "<<n<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張淙鈞
時間:
2024-2-3 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n=0;
for(int i=333; i<=999; i=i+3)
{
n=n+i;
}
cout<<"333~999間所有3的倍數總和為:"<<n<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2