include "stdio.h"main(){ int a,b; int i,j; printf("输入等腰三角型的底"); scanf("%d",&b); a=b; for(i=0;i<a;i++) { for(j=0;j<i;j++) printf(" "); for(j=0;j