填空题

执行以下程序后,输出“#”的个数是
#include <stdio.h>
main()
int i,j;
for(i=1;i<5;i++)
for(j=2;j<=i;j++) putchar(’#’);

【参考答案】

6