求教打“#”号问题,小弟在线等,帮忙啊
下面的就是该程序,小弟实在是不能理解,大哥大姐们能不能给加个注释。
他打的效果是 #
# # #
....
# # # # # # # #
#include <iostream.h>
void main() { for(int i=1; i<=10; i++) { for(int j=1; j<=10-i; j++) cout <<" "; for(int j=1; j<=2*i-1; j++) cout <<"#"; cout <<endl; } }