1 条题解

  • 1
    @ 2025-7-28 8:42:54

    这道题是一道非常简单的题目 python 3代码

    print("hello world")
    
    

    C++代码

    ```cpp
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        printf("hello world");
        return 0;
    }
    

    难点的C++代码

    #include<bits/stdc++.h>
    using namespace std;
    
    int main() {
        string s = "hello world";  
        for(int i = 0; i <= s.size() - 1; i++) {
            cout << s[i];  
        }
        
        return 0;
    }
    
    • 1

    信息

    ID
    116
    时间
    1000ms
    内存
    32MiB
    难度
    5
    标签
    递交数
    155
    已通过
    64
    上传者