Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 167 Bytes

6.md

File metadata and controls

14 lines (12 loc) · 167 Bytes

题目:用*号输出字母C的图案。

#include<stdio.h>

int main()
{
	printf(" ***\n");
	printf("*\n");
	printf("*\n");
	printf(" ***\n");

	return 0;
}