1 条题解

  • 0
    @ 2021-6-14 22:56:40

    C++ :

    #include <iostream>
    #include <string>
    using namespace std;
    int main()
    {
      string str1,str2,str3;int a=0;
      cin>>str1;
      getline(cin,str2);
      getline(cin,str2);
      cout<<str2<<str1<<endl;
      
      while(getline(cin,str3))
      {
        cout<<str3[str3.size()-1];
        a++;
      }
    
      cout<<endl<<a+2<<endl;
    //  system("pause");
      return 0;
    }
    
    
    • 1

    信息

    ID
    86
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者