1 solutions

  • 0
    @ 2025-11-5 16:17:31

    C :

    #include<stdio.h>
    int main()
    {
         printf("hello world");
         return 0;
    }
    

    C++ :

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

    Pascal :

    begin
    writeln('Hello world!');
    end.
    

    FreeBasic :

    Begin
     writeln('*****************************');
     writeln('':7,'Hello world!');
     writeln('*****************************');
    End.
    
    • 1

    Information

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