返回列表 發帖

2024/11/23課堂重點

本帖最後由 李知易 於 2024-11-24 01:26 編輯

(上)教室連結-知易老師
(下)教室連結-知易老師
1. 請先回復本主題完成簽到 (格式:YYYY/MM/DD 簽到)。
2. 點選上方「會議連結」以 google 帳號登入,留意需允許視窗對「視訊鏡頭」與「麥克風」之存取權限。
3. 遠距教學高度仰賴學生本身的自律性,請如同實體課程專心上課,遵守上課秩序。
教學輔助工具 - AnyDesk (選用)
在課堂進行時,若需要老師直接操作學生端之電腦以給予協助,可透過遠端桌面軟體 AnyDesk 達成。

2024/11/23 課程重點
考試(分數):
301~410 隨機1題 紙筆測試 隨機一題 kitajudge測試 共兩題
101-410隨機抽題複習
507
[11/23作業1]
KitaJudge完成205-210、507上傳後並得到AC,請勿使用複製方式
4位同學另外需要按自己對程式碼的理解,自行於A4紙上畫出流程圖並繳交


課堂錄影

抽籤軟體:
回去自己使用抽籤軟體練習
題號複製:
101
102
103
104
105
106
107
108
109
110
201
202
203
204
205
206
207
208
209
210
301
302
303
304
305
306
307
308
309
310
401
402
403
404
405
406
407
408
409
410

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. string str;
  6. int n;
  7. int main()
  8. {
  9.     cin>>n;
  10.     ifs.open("read.txt");
  11.     ofs.open("write.txt");
  12.     for(int i=0;i<n;i++)
  13.     {
  14.         getline(ifs,str);
  15.         char c;
  16.         for(int j=0;j<str.length();j++)
  17.         {
  18.             if(j==0 || str[j-1]==' ')
  19.                 c=str[j]32;
  20.             else
  21.                 c=str[j];
  22.             cout<<c;
  23.             ofs<<c;
  24.         }
  25.         cout<<endl;
  26.         ofs<<'\n';
  27.     }
  28.     return 0;
  29. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. string str;
  6. int n;
  7. int main()
  8. {
  9.     cin>>n;
  10.     ifs.open("read.txt");
  11.     ofs.open("write.txt");
  12.     for(int i=0; i<n; i++)
  13.     {
  14.         getline(ifs, str);
  15.         for(int j=0, len=str.length(); j<len; j++)
  16.         {
  17.             char c=str[j];
  18.             if(j==0 || str[j-1]==' ')
  19.                 c-=32;
  20.             cout<<c;
  21.             ofs<<c;
  22.         }
  23.         cout<<'\n';
  24.         ofs<<'\n';
  25.     }
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. string str;
  6. int n;
  7. int main()
  8. {
  9.     cin>>n;
  10.     for(int i=0;i<n;i++)
  11.     {
  12.         getline(ifs,str);
  13.         for(int j=0;j<str.length();j++)
  14.         {
  15.             char c=str[j];
  16.             if(j==0 ||str[j-1]==' ')
  17.             {
  18.                 c-=32;
  19.                 cout<<c;
  20.                 ofs<<c;
  21.             }
  22.             cout<<"\n";
  23.             ofs<<"\n";
  24.         }
  25.     }
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. string str;
  6. int n;
  7. int main()
  8. {
  9.     cin>>n;
  10.     ifs.open("read.txt");
  11.     ofs.open("write.txt");
  12.     for(int i=0;i<n;i++)
  13.     {
  14.         getline(ifs,str);
  15.         char c;
  16.         for(int j=0;j<=str.length();j++)
  17.         {
  18.             if(j==0 || str[j-1]==' ')
  19.                 c=str[j]-32;
  20.             else
  21.                 c=str[j];
  22.             cout<<c;
  23.             ofs<<c;
  24.         }
  25.         cout<<endl;
  26.         ofs<<'\n';
  27.     }
  28.     return 0;
  29. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. string str;
  6. int n;
  7. int main()
  8. {
  9.     cin>>n;
  10.     ifs.open("read.txt");
  11.     ofs.open("write.txt");
  12.     for(int i=0;i<n;i++)
  13.     {
  14.         getline(ifs,str);
  15.         for(int j=0;j<str.length();j++)
  16.         {
  17.             char c=str[j];
  18.             if(j==0 || str[j-1]==' ')
  19.                 c-=32;
  20.             cout<<c;
  21.             ofs<<c;
  22.         }
  23.         cout<<'\n';
  24.         ofs<<'\n';
  25.     }
  26.     return 0;
  27. }
複製代碼
(☆▽☆)<--按下去是roblox

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. string str;
  6. int n;
  7. int main()
  8. {
  9.     cin>>n;
  10.     ifs.open("read.txt");
  11.     ofs.open("write.txt");
  12.     for(int i=0; i<n; i++)
  13.     {
  14.         getline(ifs,str);
  15.         for(int j=0,len=str.length(); j<len; j++)
  16.         {
  17.             char c=str[j];
  18.             if(j==0 || str[j-1]==' ')
  19.                 c-=32;
  20.             cout<<c;
  21.             ofs<<c;
  22.         }
  23.         cout<<endl;
  24.         ofs<<'\n';
  25.     }
  26.     return 0;
  27. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. string str;
  7. int main()
  8. {
  9.     cin>>n;
  10.     ifs.open("read.txt");
  11.     ofs.open("write.txt");
  12.     for(int i=0;i<n;i++)
  13.     {
  14.         getline(ifs,str);
  15.         for(int j=0;j<str.length();j++)
  16.         {
  17.             char c=str[j];
  18.             if(j==0 or str[j-1]==' ')
  19.                 c-=32;
  20.             ofs<<c;
  21.             cout<<c;
  22.         }
  23.         ofs<<endl;
  24.         cout<<endl;
  25.     }
  26.     return 0;
  27. }
複製代碼

TOP

返回列表