我这么弄对不。
这个是书上面的自测 刚学完输出的 但是没有答案不知道我这么弄对不对 有哪些可以简化的的地方大家帮帮忙教教我!输出 *
* * *
* * * * *
* * * * * * *
#include<stdio.h>
main()
{
printf("%10c\n",'*');//第一行
printf("%8c",'*');
printf("%2c",'*');
printf("%2c\n",'*');//第二行
printf("%6c",'*');
printf("%2c",'*');
printf("%2c",'*');
printf("%2c",'*');
printf("%2c\n",'*');//第三行
printf("%4c",'*');
printf("%2c",'*');
printf("%2c",'*');
printf("%2c",'*');
printf("%2c",'*');
printf("%2c",'*');
printf("%2c\n",'*');//第四行
return 0 ;
}