標題:
2024/08/12 課堂重點(亭婷)
[打印本頁]
作者:
呂晉豪
時間:
2024-8-12 14:37
標題:
2024/08/12 課堂重點(亭婷)
本帖最後由 呂晉豪 於 2024-8-12 21:02 編輯
課程重點
複習上次上課內容
考108 206 208 304
210 選擇敘述與迴圈(最大公因數和最小公倍數)
(遞迴)
306 函式與陣列(階乘)
複習
找最小值的索引(快樂C++)
307 函式與陣列(陣列最大值)
本帖隱藏的內容需要回復才可以瀏覽
本帖隱藏的內容需要回復才可以瀏覽
[作業檢討]
打字練習網
About Hualien 4
再次練習201-210,上傳到KitaJudge並獲得AC
[今日作業]
再次練習101-110,上傳到KitaJudge並獲得AC
實作307,上傳到KitaJudge獲得AC後,再上傳到種子論壇
[下次考試]
101-410數題
作者:
王亭婷
時間:
2024-8-12 20:14
#include <bits/stdc++.h>
using namespace std;
int compute(int arr[]){
int c=0;
for(int i=0;i<6;i++){
if(arr[i]%3==0){
c++;
}
return c;
}
}
int main(){
int arr[6];
for(int i=0;i<6;i++){
cin>>arr[i];
}
cout<<compute(arr);
}
複製代碼
304
作者:
王亭婷
時間:
2024-8-12 20:15
#include <bits/stdc++.h>
using namespace std;
int main(){
int a;
cin>>a;
for(int i=1;i<a;i++){
int cnt;
for(int j=1;j<=i;j++){
if(i%j==0){
cnt++;
}
}if(cnt==2){
cout<<i<<" ";
}
}
}
複製代碼
208
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2