****
****
? ****
? ****
#include <stdio.h>
int main()
{
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < i; j++)
{
printf("%s", " ");
}
printf("%s\n", "*****");
}
return 0;
}
原文:https://www.cnblogs.com/weiyidedaan/p/13359685.html