2 条题解

  • 1
    @ 2026-4-4 11:07:29

    print("Hello,World!")

    • 0
      @ 2024-12-24 10:06:16

      C++ :

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

      Java :

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

      信息

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