1 solutions

  • 0
    @ 2025-11-5 14:56:40

    C :

    #include<stdio.h>
    int main()
    {
    	printf("*****\n****\n***\n**\n*\n");
    	return 0;
    }
    

    C++ :

    #include<stdio.h> 
    
    int main()
    { 
    
      printf("*****\n****\n***\n**\n*\n");
    
      return 0; 
    
    } 
    
    

    Pascal :

    begin  
      writeln('*****');
      writeln('****');
      writeln('***');
      writeln('**');
      writeln('*');
    end.  
    
    • 1

    Information

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