Write a program to print the following formation depending upon the size. Assume that we are giving input as odd number. Use System.out.println or System.out.print for printing.
Input (Integer) | Output |
---|---|
5 | @ |
9 | @ |
11 | @ |
class PrintSideTriangleShape
{ public static void main(String s[])
{
printFormation(7);
}
public static void printFormation(int columnsSize) {
//Write code here to print the required formation depending upon the columnsSize. Use System.out.println or System.out.print for printing.
}
}
Topic: Nested for Loop In Java