13 条题解

  • 2
    @ 2023-5-9 18:50:08
    #include<iostream>
    using namespace std;
    int main() {
        cout << "Hello,World! ";
        return 0;
    }
    
    • 1
      @ 2024-2-18 22:38:54

      不是吧不是吧,怎么这还有人不会

      #include<iostream>
      using namespace std;
      int main(){
          cout<<"Hello World"<<endl;
          return 0;
      }
      
      • 1
        @ 2024-2-8 1:02:34

        Python3

        print("Hello,World!")
        

        C

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

        C++

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

        Java

        public class Main{
            public static void main(String args[]){
                System.out.printIn("Hello,World!");
            }
        }
        

        PyPy3

        print("Hello,World");
        

        Pascal

        begin
          writeln("Hello,World!")
        end.
        

        Go

        package main
        
        import "fmt"
        
        func main() {
            fmt.Println("Hello,World!")
        }
        

        Ruby

        puts "Hello,World!"
        

        C# Mono

        using System;
        namespace HelloWorldApplication
        {
            class HelloWorld
            {
                static void Main(string[] args)
                {
                    Console.WriteLine("Hello,World!");
                }
            }
        }
        

        KotLin

        fun main(args: Array<String>) {
           println(&quot;Hello World!&quot;)
        }
        

        Node.js

        console.log("Hello World");
        
        • 1
          @ 2024-1-11 13:04:56

          世界上最好的题解😄

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

          看完的麻烦点个赞呗👀️

          • 1
            @ 2023-9-30 15:23:25
            #include<iostream>
            using namespace std;
            int main(){
                cout << "Hello,World!"; 
                return 0;
            }
            
            • 1
              @ 2023-8-22 16:55:39
              #include<bits/stdc++.h>
              using namespace std;
              int main(){
              	cout<<"Hello,World!";
              	return 0;
              } 
              
              • 1
                @ 2023-8-12 14:47:04
                #include<iostream>
                #include<string>
                using namespace std;
                int main(){
                    cout<<"Hello,World!";
                    return 0;
                }
                
                • 0
                  @ 2023-12-11 19:49:06

                  print("Hello,World!")

                  • 0
                    @ 2023-10-14 13:54:03
                    #include <iostream>
                    using namespace std;
                    int main()
                    {
                        cout<<"Hello,World!"<<endl;
                        return 0;
                    }
                    
                    • 0
                      @ 2023-6-8 13:41:41

                      a=("Hello,World!") print(a)

                      • 0
                        @ 2022-6-5 17:34:33
                        #include<cstdio>
                        using namespace std;
                        int main(){
                            printf("Hello,World!\n");
                        }
                        //printf法练习
                        

                        AC记录:

                        https://www.luogu.com.cn/record/64379914

                        • 0
                          @ 2022-5-21 14:56:20

                          `

                          #include <bits/stdc++.h>
                          using namespace std;
                          int main(){
                          	cout << "Hello,World!" << endl;
                          	return 0;
                          }
                          
                          • -5
                            @ 2023-2-13 19:59:54

                            eee......

                            • 1

                            信息

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