Board logo

標題: 2024/08/12 課程重點(炫霆) [打印本頁]

作者: 呂晉豪    時間: 2024-8-12 14:33     標題: 2024/08/12 課程重點(炫霆)

本帖最後由 呂晉豪 於 2024-8-12 19:32 編輯

[課堂重點]
考104 205 306 410 510 605 708並檢討

[作業檢討]
再次練習507-509,上傳到KitaJudge並獲得AC
再次練習601-610,上傳到KitaJudge並獲得AC

[今日作業]
再次練習510,上傳到KitaJudge並獲得AC
再次練習701-710,上傳到KitaJudge並獲得AC

[下次考試]
301-710數題
作者: 董炫霆    時間: 2024-8-12 18:58

708
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){

  4.     int a,b;
  5.     cin>>a>>b;
  6.     int sum=0;
  7.     if(a>12){
  8.         cout<<"PM "<<a-12<<":"<<b<<endl;
  9.     }
  10.     else if(a==0){
  11.         cout<<"AM 12:"<<b<<endl;
  12.         sum++;
  13.     }
  14.     else if(a<=12){
  15.         cout<<"AM "<<a<<":"<<b<<endl;
  16.     }

  17. }
複製代碼

作者: 董炫霆    時間: 2024-8-12 18:58

510
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main(){

  4.     int n,m;
  5.     cin>>n>>m;
  6.     int arr[n][m];
  7.     for(int i=0;i<n;i++){
  8.         for(int j=0;j<m;j++){
  9.             cin>>arr[i][j];
  10.         }
  11.     }

  12.     for(int i=0;i<n;i++){
  13.         for(int j=0;j<m;j++){
  14.             if(arr[i][j]=   =0 and arr[i][j+1]==0 or arr[i][j-1]==0 or arr[i+1][j]==0 or arr[i-1][j]==0){
  15.                 cout<<"";
  16.             }
  17.             else if(arr[i][j]==0 and j==0 or i==0 or n-1==0 or m-1==0){
  18.                 cout<<"*";
  19.             }
  20.             else{
  21.                 cout<<"*";
  22.             }
  23.         }
  24.         cout<<endl;
  25.     }


  26. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2