2 条题解

  • 0
    @ 2024-9-30 21:35:31
    #include<iostream>
    using namespace std;
    
    char he[] = {"hello world"};
    int i;
    
    int main()
    {
        while(he[i] != 0)
        {
            he[i] += 1;
            cout << he[i];
            i++;       
        }
    
        return 0;
    }
    

    信息

    ID
    20
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    递交数
    22
    已通过
    7
    上传者