2 条题解

  • 0
    @ 2025-5-6 17:37:19
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        cout<<"hello world!";
        return 0;
    }
    
    • 0
      @ 2024-12-24 9:49:24

      C :

      #include<stdio.h>
      void main()
      {
           printf("hello world!\n");
      }
      

      C++ :

      #include<cstdio>
      using namespace std;
      int main()
      {
      	printf("hello world!\n");
      	return 0;
      }
      
      • 1

      请在屏幕上输出一行字符'hello world!'

      信息

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