1 solutions

  • 0
    @ 2025-11-5 18:46:42

    C :

    #include<stdio.h>
    int main()
    {
      int i=0;
      char s[]="         Very    Good!\n";
      while(i++<26)
        printf("*");
      printf("\n%s",s);
     i=0;
      while(i++<26)
        printf("*");
      printf("\n");
      return 0;
    }
    
    

    C++ :

    #include<iostream>
    using namespace std;
    int main()
    {
    cout<<"**************************"<<endl;
    cout<<"         Very    Good!"<<endl;
    cout<<"**************************"<<endl;
    }
    

    Pascal :

    begin
      writeln('**************************');
      writeln('         Very    Good!');
      write('**************************');
    end.
    
    • 1

    Information

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