1 条题解

  • 1
    @ 2020-03-01 23:18:46

    C Code

    #include <stdio.h>
    int main()
    {
        printf("Hello,World!\n");
        return 0;
    }
    

    C++ Code

    #include <iostream>
    using namespace std;
    int main()
    {
        cout << "Hello,World!" << endl;
        return 0;
    }
    
  • 1

信息

ID
1026
难度
1
分类
(无)
标签
递交数
15
已通过
5
通过率
33%
上传者