1 条题解

  • 0
    @ 2025-3-7 14:24:05
    #include <bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        int m = 2;
        short n = 2;
        size_t a = sizeof(m);
        size_t b = sizeof(n);
    
        cout << a << " " << b;
        return 0;
    }
    
    • 1

    信息

    ID
    28
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    17
    已通过
    12
    上传者