7 条题解

  • 1
    @ 2025-1-28 20:01:04

    今天给大家发福利,直接带来三种解法:

    print("Hello,World!")
    # 第1种:Python
    
    #include <cstdio>
    int main() {
        printf("Hello,World!");
        return 0;
    }
    // 第2种:C++ cstdio
    
    #include <bits/stdc++.h>
    using namespace std;
    int main() {
        cout << "Hello,World!";
        return 0;
    }
    // 第3种 C++ std
    

    信息

    ID
    4452
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    962
    已通过
    525
    上传者