2 条题解

  • 1
    @ 2025-7-15 16:19:54

    #include <bits/stdc++.h> using namespace std; string s;

    int main() { cin>>s; cout<<s; while(cin>>s){ cout<<" "<<s; } return 0; }

    • 0
      @ 2025-7-15 16:22:23

      #include <bits/stdc++.h> using namespace std; string s;

      int main() { cin >> s; cout << s; while (cin >> s) { cout << " " << s; }

      return 0;
      

      }

      • 1

      信息

      ID
      446
      时间
      1000ms
      内存
      64MiB
      难度
      5
      标签
      递交数
      20
      已通过
      14
      上传者