5 条题解

  • 3
    @ 2025-11-24 17:35:29
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        cout<<"Hello,World!";
        return 0;
    }
    
    • 0
      @ 2025-12-15 21:20:39
      #include<iostream>
      #include<cstring>
      using namespace std;
      int main(){
          cout<<"Hello,World!"<<endl;
          return 0;
      }
      
      • 0
        @ 2025-11-24 17:36:40
        
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
            cout<<"Hello,World!";
            return 0;
        }
        
        
        • 0
          @ 2025-11-16 19:15:24

          教大家函数:

          #include<bits/stdc++.h>
          using namespace std;
          string s(){
              return "Hello,World!";
          }
          int main(){
              cout<<s();
              return 0;
          }
          

          十分的简单 GoodGood

          • @ 2025-12-13 21:15:09

            我直接差评! 这么简单的题还用函数!

        • -1
          @ 2025-12-7 14:30:27
          #include <bits/stdc++.h>
          using namespace std;
          
          int main() {
              cout<<"Hello,World!";
              return 0;
          }
          
          • 1

          信息

          ID
          6805
          时间
          1000ms
          内存
          128MiB
          难度
          1
          标签
          递交数
          248
          已通过
          94
          上传者