Topic Description
Using letters to make up some beautiful graphics, here's an example:
ABCDEFG
Babcdef
Cbabcde
Dcbabcd
Edcbabc
This is a 5 row 7 column of graphics, please find out the pattern of this graph, and output a n row m column of graphics.
Input Format
Enter a line that contains two integers n and m, representing the number of rows in the graph you want to output. output Format
Output n rows, each M-character, for your graphics. Sample Input
5 7 Sample Output
ABCDEFG
Babcdef
Cbabcde
Dcbabcd
EDCBABC Data size and Convention
1 <= N, M <= 26.
Import Java.util.Scanner;
public class Main {public
static void Main (string[] args) {
Scanner cin = new Scanner (system.in);
int n = cin.nextint (), M = Cin.nextint ();
Char c[] = new char[51];
for (int i = 0; i < i++) {
C[i] = (char) (i +);
C[50-i] = (char) (+ i);
}
for (int i = 0; i < n; i++) {for
(int j = 0; J < m; j +)
System.out.print (C[j]);
System.out.println ();
for (int j =; J >= 0; j--)
c[j + 1] = C[j];
C[0] = c[50];}}