21 条题解

  • 2
    @ 2023-12-15 10:41:01

    代码:

    Hello World
    

    PHP 标签外字符会被 PHP 解释器直接输出

  • 2
    @ 2023-8-21 17:17:09

    C语言入门,标准输出流。

    #include <stdio.h>
    
    int main()
    {
        printf("Hello World");
        return 0;
    }
    
    • 1
      @ 2025-9-17 20:15:40
      #include <stdio.h>
      
      int main()
      {
          printf("Hello World");
          return 0;
      }
      
      • 1
        @ 2024-11-13 21:05:43

        #include <iostream>

        using namespace std;

        int main()

        {

        cout<<"Hello World"<<endl;

        return 0;

        }

      • 1
        @ 2024-10-13 18:19:51

        为啥用java会报错呀

        • 1
          @ 2023-8-9 13:30:35

          #include<stdio.h>

          int main(void) { printf("Hello World"); return 0; }

          • @ 2023-10-17 8:59:06

            还是不会,大佬可以教教我吗?

          • @ 2023-10-17 8:59:06

            还是不会,大佬可以教教我吗?

          • @ 2023-10-17 8:59:06

            还是不会,大佬可以教教我吗?

          • @ 2023-10-17 8:59:06

            还是不会,大佬可以教教我吗?

          • @ 2023-10-17 8:59:06

            还是不会,大佬可以教教我吗?

          • @ 2023-10-17 8:59:06

            还是不会,大佬可以教教我吗?

          • @ 2023-11-14 12:36:00

            我也不会,大佬教教我

        • 0
          @ 2025-9-22 20:55:25

          #include <stdio.h> int main(){ printf("hello word"); return 0; }

          • 0
            @ 2025-5-1 22:12:17
            #include "iostream"
            using namespace std;
            int main(){
                cout<<"Hello World";
                return 0;
            }
            
            • 0
              @ 2024-10-2 9:33:52

              #include <stdio.h> int main() { printf("Hello Word"); return 0; }

              • 0
                @ 2024-9-11 7:47:45

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

                • 0
                  @ 2024-4-19 14:36:20
                  #include <stdio.h>
                  int main()
                  {
                      int HelloWorld(int a);
                      printf("%c%c%c%c%c%c%c%c%c%c%c",
                      HelloWorld('H'),
                      HelloWorld('i'),
                      HelloWorld('g'),
                      HelloWorld('h'),
                      HelloWorld('T'),
                      HelloWorld('e'),
                      HelloWorld('m'),
                      HelloWorld('p'),
                      HelloWorld('l'),
                      HelloWorld('a'),
                      HelloWorld('r'));
                      return 0;
                  }
                  int HelloWorld(int a)
                  {
                      while(1)
                      {
                      if(a=='H'){a='H';break;}
                      if(a=='i'){a='e';break;}
                      if(a=='g'){a='l';break;}
                      if(a=='h'){a='l';break;}
                      if(a=='T'){a='o';break;}
                      if(a=='e'){a=' ';break;}
                      if(a=='m'){a='W';break;}
                      if(a=='p'){a='o';break;}
                      if(a=='l'){a='r';break;}
                      if(a=='a'){a='l';break;}
                      if(a=='r'){a='d';break;}
                      }
                      return a;
                  }//B站搜索关注Siglota喵`
                  
                  • 0
                    @ 2023-10-28 10:10:08

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

                    • 0
                      @ 2023-10-3 22:43:33

                      #include <stdio.h>

                      int main() { printf("Hello World"); return 0; }

                      • 0
                        @ 2023-9-23 13:37:41
                        #include <stdio.h>
                        
                        int main()
                        {
                            printf("Hello World");
                            return 0;
                        
                        • 0
                          @ 2022-12-7 9:43:35

                          #include<stdio.h> int main() { printf("Hello World"); return 0;

                          }

                          • 0
                            @ 2022-12-3 18:52:43
                            #include<bits/stdc++.h>
                            using namespace std;
                            int main(){
                                 cout << "Hello World";
                                 return 0;
                            }
                            
                            • 0
                              @ 2022-11-29 18:33:46

                              #include stdio.h int main() { printf("Hello world"); return 0; }

                              • 0
                                @ 2022-10-9 21:24:22

                                奥雷给

                                • 0
                                  @ 2022-9-26 16:22:11
                                  #include<iostream>
                                  using namespace std;
                                  int main(){
                                      char s1[]="Hello World";
                                      cout<<s1;
                                      return 0;
                                  }
                                  
                                  • 0
                                    @ 2022-9-17 23:12:34
                                    #include<stdio.h>
                                    int main()
                                    {
                                    
                                    printf("Hello World");
                                    
                                    
                                    
                                        return 0;
                                    }
                                    

                                    信息

                                    ID
                                    1
                                    时间
                                    1000ms
                                    内存
                                    256MiB
                                    难度
                                    6
                                    标签
                                    递交数
                                    16637
                                    已通过
                                    4526
                                    上传者