填空题

写出程序运行结果 main() { int i,j; for(i=0;i<5;i++) { for(j=5;j-i>0;j--) printf("*"); printf("\n"); } } 运行结果为: ______

【参考答案】

*****
相关试题