1 条题解

  • 1
    @ 2021-11-06 20:41:25
    #include <iostream>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    int main()
    {
        int n, m; scanf("%d,%d", &n, &m);
        swap(n, m);
        printf("%d,%d", n, m);
        return 0;
    }
    
  • 1

信息

难度
1
分类
(无)
标签
递交数
84
已通过
28
通过率
33%
上传者