本题要求掌握预处理指令include 和 printf函数 的基本用法,以及C语言程序的基本结构和换行符 \n 的基本用法。
#include "stdio.h"int main(){ printf("* * * *\n * * *\n * *\n *"); return 0;}
答案不唯一…