C语言实验——用*号输出字母C的图案

#include <stdio.h>
#include <stdlib.h>


int main()
{
    printf("*****\n");
    printf("*\n");
    printf("*\n");
    printf("*\n");
    printf("*****\n");
    return 0;
}

相关文章:

  • 2021-04-26
  • 2022-12-23
  • 2021-05-04
  • 2021-09-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-04-03
  • 2022-12-23
  • 2022-12-23
  • 2022-02-04
相关资源
相似解决方案