1 solutions

  • 0
    @ 2025-11-5 15:27:40

    C++ :

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	printf("%3c%c%c%c\n",'#','#','#','#');
    	printf("%3c%c%c\n",'@','@','@');
    	printf("%3c%c\n",'!','!');
    	printf("%3c",'=');
    	return 0;
    }
    

    Pascal :

    begin
      writeln('  ####');
      writeln('  @@@');
      writeln('  !!');
      writeln('  =');
    end.
    
    • 1

    Information

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