打印字母塔 ***题目描述*** 输入行数N,打印图形. 输入 输入只有一行,包括1个整数。(N<=15) 输出 输出有N行. ***样例*** 输入 3 输出 A BAB CBABC 代码如下: #include<stdio.h> #include<stdlib.h> int main() {