其他分享
首页 > 其他分享> > 练习2-3 输出倒三角图案 (5 分)

练习2-3 输出倒三角图案 (5 分)

作者:互联网

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;
}

 

标签:输出,int,练习,倒三角,图案,格式,include
来源: https://www.cnblogs.com/xxl-h/p/11110689.html