标签:
数组常见操作:
使用字母打印正三角形
public class fifty { public static void main(String[] args) { char[] c = {‘A‘,‘B‘,‘C‘,‘D‘,‘E‘,‘F‘,‘G‘}; //要打印的行数 for(int i = 0;i<c.length; i++){ //打印每一行空格 for(int j = i; j<c.length-1; j++){ System.out.print(" "); } //打印每行的字母 for(int j = 0; j<=i*2; j++){ System.out.print(c[i]); } System.out.println(); } } }
标签:
原文地址:http://www.cnblogs.com/LO-ME/p/4301993.html