#include <stdio.h>
/*
*
* *
* * *
* * * *
* * * * *
*/
int main(int argc, char const *argv[])
{
/* code */
for (int i = 0; i < 5; i++) // 控制行数
{
/* code */
for (int j = 0; j <= i; j++)
{
/* code */
printf("* ");
}
printf("\n");
}
return 0;
}