1 solutions

  • 0
    @ 2025-11-5 15:24:00

    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

    Information

    ID
    16745
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By