返回列表 發帖

林家鉌 2024/1/6 簽到

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. float compute(int a[6])
  4. {
  5.     float b[3];
  6.     for(int i=0;i<3;i++)
  7.         b[i]=(a[i]+0.0)/(a[i+3]+0.0);
  8.     return min(b[0],min(b[1],b[2]));
  9. }
  10. int main()
  11. {
  12.     int a[6];
  13.     for(int  i=0;i<6;i++)
  14.         cin>>a[i];
  15.     cout<<fixed<<setprecision(3)<<compute(a);
  16.     return 0;
  17. }
複製代碼

TOP

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

TOP

返回列表