1 条题解

  • 0
    @ 2021-11-21 22:05:33
    #include <bits/stdc++.h>
    
    using namespace std;
    
    struct edge{
        string s;
    }a[80];
    
    int main()
    {
        int i = 0;
        while ( cin >> a[i].s ) i ++ ;
        for ( int j = i - 1; j >= 0; j -- )
            cout << a[j].s << ' ';
        return 0;
    }
    
  • 1

信息

ID
1094
难度
6
分类
(无)
标签
递交数
122
已通过
32
通过率
26%
被复制
2
上传者