2-3 输出倒三角图案 (5 分)
本题要求编写程序,输出指定的由“*”组成的倒三角图案。
输入格式:
本题目没有输入。
输出格式:
按照下列格式输出由“*”组成的倒三角图案。
* * * *
* * *
* *
*
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
printf("* * * *\n * * *\n * *\n *") ;
return 0;
}
原文地址:https://www.cnblogs.com/xxl-h/p/11110689.html
时间: 2024-11-10 03:13:22