返回列表 發帖

[作業] f429 高市109年資訊競賽第七題

f429. 高雄市109年資訊競賽國中組第七題



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

本帖最後由 洪承廷 於 2024-12-12 23:06 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     string a,b,c;
  6.     cin>>a>>b>>c;
  7.     cout<<b<<endl;
  8.     cout<<c<<endl;
  9.     cout<<a<<endl;
  10.     return 0;
  11. }
複製代碼

TOP

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

TOP

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

TOP

本帖最後由 高鋐鈞 於 2024-12-14 09:30 編輯
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string s1,s2,s3;
  6.     getline(cin,s1);
  7.     getline(cin,s2);
  8.     getline(cin,s3);
  9.     cout<<s2<<"\n"<<s3<<"\n"<<s1;
  10.     return 0;
  11. }
複製代碼

TOP

返回列表