我是想到吐血都想不出来
#include<stdio.h> int main() { int i,j,c=0; for(i=1;i<=6;i++){ for(j=1;j<=i;j++){ printf("%c",(char)(65+c) ); c++; } printf("\n"); } return 0; }
非常感谢你