(求助)关于这个程序
#include<stdio.h>
main()
{int i,j;
for(i=1;i<5;i++)
for(j=2;j<=i;j++)
putchar("#");
}
看一下这个程序有错误吗?结果是什么
?
#include<stdio.h>
main()
{int i,j;
for(i=1;i<5;i++)
for(j=2;j<=i;j++)
putchar("#");
}
看一下这个程序有错误吗?结果是什么
?
2006-06-02 11:33
2006-06-02 11:56
2006-06-02 17:52

2006-06-02 23:20
2006-06-02 23:54
2006-06-03 09:25