本题要求编写程序,输出指定的由“*”组成的倒三角图案。
本题目没有输入。
按照下列格式输出由“*”组成的倒三角图案。
1234
* * * * * * * * * *
123456789
#include<stdio.h> int main(void) { printf("* * * *\n"); printf(" * * *\n"); printf(" * *\n"); printf(" *\n"); return 0; }
auhanjie
Zhuhai, China
文章
465
分類
21
標籤
30
mysql
java
leetcode
Update your browser to view this website correctly. Update my browser now
×