Board logo

標題: [作業] f429 高市109年資訊競賽第七題 [打印本頁]

作者: 李知易    時間: 2024-12-7 01:07     標題: [作業] f429 高市109年資訊競賽第七題

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



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

作者: 高鋐鈞    時間: 2024-12-7 10:00

本帖最後由 高鋐鈞 於 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. }
複製代碼

作者: 徐啟祐    時間: 2024-12-7 14:02

  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. }
複製代碼

作者: 張駿霖    時間: 2024-12-7 23:20

  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. }
複製代碼

作者: 洪承廷    時間: 6 天前 23:05

本帖最後由 洪承廷 於 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. }
複製代碼





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