1 条题解

  • 0
    @ 2025-4-12 21:43:14

    C :

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

    C++ :

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

    Pascal :

    var a:string;
    begin
        a:='hello world!';
        writeln(a);
    end.
    
    • 1

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

    信息

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