输出一个三角形

#include<stdio.h>
main()
{
printf(" * ");
printf(" * * ");
printf("* * * * * ");
}

原文地址:https://www.cnblogs.com/flywolf601/p/5864770.html