Waterloo Cup: Basic practice Alphabet Graphics "Java algorithm implementation" __c language

Source: Internet
Author: User
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];}}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.