FatihBozik
2/22/2015 - 6:39 PM

a.java

public class Program 
{
    static void yaz(char ch) 
    {
        for(int i = 1; i <= 4; i++ ) 
	{
            for(int j = 1; j <= 11; j++) 
            {
                if(i > 1 && i < 4) 
		{
                    if(j > 1 && j < 11) 
		    {
                        System.out.print(" ");
                    }
                    else 
                    {
                        System.out.print(ch);
                    }
                }
                else 
                {
                    System.out.print(ch);
                }
            }

            System.out.println();
        }
    }

    public static void main(String[] args) 
    {
       yaz('a');
    }
}