返回列表 發帖

2024/12/28 課堂重點(紘鳴)

本帖最後由 李知易 於 2024-12-28 17:11 編輯

今日上課重點(週六15:30 - 17:00):

704 過半數
705 庫存函數
706 整數檔案讀寫

今日考試:
201 -  507 隨機 1 題

下次考試:
201 - 604 隨機 1 題


本帖隱藏的內容需要回復才可以瀏覽

710
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string s="0000";
  4. char c;
  5. int t=0;
  6. int main()
  7. {
  8.     for(int i=0;i<4;i++)
  9.     {
  10.         cin>>c;
  11.         s[i]=c;
  12.         cout<<s[0]<<" "<<s[1]<<" "<<s[2]<<" "<<s[3]<<" "<<endl;
  13.     }
  14.     for(int i=4;i<10;i++)
  15.     {
  16.         cin>>c;
  17.         if(s.find(c)==-1)
  18.         {
  19.             if(t>3)
  20.                 t=0;
  21.             s[t]=c;
  22.             t++;
  23.         }
  24.         cout<<s[0]<<" "<<s[1]<<" "<<s[2]<<" "<<s[3]<<" "<<endl;
  25.     }
  26.     return 0;
  27. }
複製代碼

TOP

609
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int y,m,d,sum=0;
  4. int a[12]={31,28,31,30,31,30,31,31,30,31,30,31};
  5. int main()
  6. {
  7.     cin>>y>>m>>d;
  8.     if((y%4==0&&y%100!=0)||y%400==0)
  9.         a[1]=29;
  10.     if(m<1||m>12||d<1||d>a[m-1])
  11.     {
  12.         cout<<"error"<<endl;
  13.         return 0;
  14.     }
  15.     else
  16.     {
  17.         for(int i=0;i<m-1;i++)
  18.             sum+=a[i];
  19.         sum+=d;
  20.     }
  21.     cout<<sum<<endl;
  22.     return 0;
  23. }
複製代碼

TOP

610
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a,b,c,d;
  4. int main()
  5. {
  6.     cin>>a>>b;
  7.     int ab[a][b];
  8.     for(int i=0;i<a;i++)
  9.     {
  10.         for(int j=0;j<b;j++)
  11.             cin>>ab[i][j];
  12.     }
  13.     cin>>c>>d;
  14.     int cd[c][d];
  15.     for(int i=0;i<c;i++)
  16.     {
  17.         for(int j=0;j<d;j++)
  18.             cin>>cd[i][j];
  19.     }
  20.     if(b!=c)
  21.     {
  22.         cout<<"error"<<endl;
  23.         return 0;
  24.     }
  25.     int ans[a][d];
  26.     for(int k=0;k<d;k++)
  27.     {
  28.         for(int i=0;i<a;i++)
  29.         {
  30.             ans[i][k]=0;
  31.             for(int j=0;j<b;j++)
  32.             {
  33.                 ans[i][k]+=ab[i][j]*cd[j][k];
  34.             }
  35.         }
  36.     }
  37.     for(int i=0;i<a;i++)
  38.     {
  39.         
  40.         cout<<ans[i][0];
  41.         for(int j=1;j<d;j++)
  42.             cout<<" "<<ans[i][j];
  43.         cout<<endl;
  44.     }
  45.     return 0;
  46. }
複製代碼

TOP

701
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a,b,c;
  4. int main()
  5. {
  6.     cin>>a>>b>>c;
  7.     double s=(a+b+c)/2.0;
  8.     printf("%.2f",sqrt(s*(s-a)*(s-b)*(s-c)));
  9.     return 0;
  10. }
複製代碼

TOP

702
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. string s;
  4. int main()
  5. {
  6.     cin>>s;
  7.     cout<<stoi(s,nullptr,2)<<endl;
  8.     return 0;
  9. }
複製代碼

TOP

703
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n,fif=0,ten=0,fiv=0;
  4. int main()
  5. {
  6.     cin>>n;
  7.     while(n-50>=0)
  8.     {
  9.         n-=50;
  10.         fif++;
  11.     }
  12.     while(n-10>=0)
  13.     {
  14.         n-=10;
  15.         ten++;
  16.     }
  17.     while(n-5>=0)
  18.     {
  19.         n-=5;
  20.         fiv++;
  21.     }
  22.     if(fif>0)
  23.         cout<<fif<<"*$50";
  24.     if(ten>0&&fif>0)
  25.         cout<<" "<<ten<<"*$10";
  26.     else if(ten>0)
  27.         cout<<ten<<"*$10";
  28.     if(fiv>0&&(ten>0||fif>0))
  29.         cout<<" "<<fiv<<"*$5";
  30.     else if(fiv>0)
  31.         cout<<fiv<<"*$5";
  32.     if(n>0&&(fiv>0||ten>0||fif>0))
  33.         cout<<" "<<n<<"*$1";
  34.     else if(n>0)
  35.         cout<<n<<"*$1";
  36.     return 0;
  37. }
複製代碼

TOP

706
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. vector<int> v;
  6. int n;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.     {
  18.         v.push_back(n);
  19.     }
  20.     sort(v.begin(),v.end());
  21.     for(int i=0;i<v.size();i++)
  22.     {
  23.         cout<<v[i]<<endl;
  24.         ofs<<v[i]<<endl;
  25.     }
  26.     return 0;
  27. }
複製代碼

TOP

返回列表