码迷,mamicode.com
首页 > 其他好文 > 详细

蓝桥杯- 基础练习: 字母图形

时间:2018-01-14 22:40:40      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:png   ati   har   import   bubuko   color   oid   ann   i++   

技术分享图片

技术分享图片

技术分享图片

import java.util.Scanner;

public class W {
/*
A B C D E F G
B A B C D E F
C B A B C D E
D C B A B C D
E D C B A B C
 */
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int i = scanner.nextInt();
        int j = scanner.nextInt();
        char chars[][] = new char[i][j];
        for (int x = 0; x < i; x++) {
            char a = ‘A‘;
            char b = (char)(65+x);
            for (int y = 0; y < j; y++) {
                if (x>y) {
                    System.out.print(b--);
                }
                if (x<=y) {
                    System.out.print(a++);
                }
            }
            System.out.println();
        }
    }
}
package shiti;

import java.util.Scanner;

/*
A B C D E F G
B A B C D E F
C B A B C D E
D C B A B C D
E D C B A B C
 */
public class W1 {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int x = scanner.nextInt();
        int y = scanner.nextInt();
        
        for (int i = 0; i < x; i++) {
            for (int j = 0; j < y; j++) {
                if (i>j) {
                    System.out.print((char)(65+i-j));
                }
                if (i<=j) {
                    System.out.print((char)(65-i+j));
                }
            }
            System.out.println();
        }
    }
}

 

蓝桥杯- 基础练习: 字母图形

标签:png   ati   har   import   bubuko   color   oid   ann   i++   

原文地址:https://www.cnblogs.com/wzqjy/p/8284272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!