星形排列
时间:2020-01-24 18:47:37
收藏:0
阅读:96
#include "stdio.h" void main() { int i,j; for(i=1;i<=4;i++) {for(j=1;j<=i;j++) { printf("*"); } printf("\n"); } }
原文:https://www.cnblogs.com/zyz322/p/12232455.html
评论(0)