fenby C语言 P19

时间:2015-05-14 23:15:59   收藏:0   阅读:125

#include <stdio.h>

int main()
{
int i,j;
for(i=1;i<=8;i++)
{
for(j=1;j<=i;j++)
{
printf("*");
}
printf("\n");
}
return 0;
}

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!