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

Posted xxl-h

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习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;

 

以上是关于练习2-3 输出倒三角图案 (5 分)的主要内容,如果未能解决你的问题,请参考以下文章

PAT 练习2-3 输出倒三角图案

for循环练习题-编写程序,根据输入行数,输出下三角图案

for循环练习题-编写程序,根据输入行数,输出下三角图案

for循环练习题-编写程序,根据输入行数,输出下三角图案

C语言编程 编写程序,在屏幕上输出下面的图案(要求用for 循环实现)。 * * *

PTA3-1