本题要求编写程序,输出指定的由“*”组成的倒三角图案。
本题目没有输入。
按照下列格式输出由“*”组成的倒三角图案。
* * * * * * * * * *
# include <stdio.h> # include <stdio.h> int main(){ printf("* * * *\n * * *\n * *\n *"); return 0; }