1 条题解

  • 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
    标签
    (无)
    递交数
    1
    已通过
    0
    上传者