基础练习 字母图形
Posted Luking
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础练习 字母图形相关的知识,希望对你有一定的参考价值。
-----------------------------------------------------------------
不知道说啥
感觉好像偏离主体思想了
但是这样写好简单
-----------------------------------------------------------------
算法
1 import java.util.*; 2 public class Main { 3 public static void main(String[] args) { 4 Scanner sc = new Scanner(System.in); 5 int n = sc.nextInt(); 6 int m = sc.nextInt(); 7 char[] ch = {\'A\',\'B\',\'C\',\'D\',\'E\',\'F\',\'G\',\'H\',\'I\',\'J\',\'K\',\'L\',\'M\',\'N\', 8 \'O\',\'P\',\'Q\',\'R\',\'S\',\'T\',\'U\',\'V\',\'W\',\'X\',\'Y\',\'Z\'}; 9 String st = ""; 10 for(int i=0;i<m;i++) 11 st += ch[i]; 12 for(int i=0;i<n;i++){ 13 String st1,st2; 14 if(i!=0){ 15 st1 = st.substring(0, st.length()-1); 16 st2 = ch[i]+""; 17 st = st2+st1; 18 } 19 System.out.println(st); 20 } 21 } 22 }
以上是关于基础练习 字母图形的主要内容,如果未能解决你的问题,请参考以下文章