填空题 执行以下程序后,输出“#”号的个数是 【14】
#include<iostream.h>
main()

int i,j;
for(i=1;i<5;i++)
for(j=2;j<=i;j++)
cout<'#';


  • 1、
【正确答案】 1、6    
【答案解析】