標題:
2024/10/18 課堂重點(若恩)
[打印本頁]
作者:
陳曜誌
時間:
2024-10-18 15:29
標題:
2024/10/18 課堂重點(若恩)
本帖最後由 陳曜誌 於 2024-10-19 16:32 編輯
[課程重點]
複習上次上課內容
質數 (一) - 判斷是否為質數
質數 (二) - 1000以內的質數有哪些?
[隨堂測驗]100000以內的質數總共有幾個?
[隨堂測驗] 時間換算機
[作業檢討]
[作業] 三數求公因數
[今日作業]
時間換算機2
作者:
何若恩
時間:
2024-10-18 18:00
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
int bigger = (a > b ? a : b);
for(int i=a*b;i>=bigger;i--){
if(i%a==0 and i%b==0){
c=i;
}
}
cout<<a<<"和"<<b<<"的最小公倍數是: "<<c<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2