/*Description
编写一个C程序,输出以下信息:
**************************
Very Good!
**************************
数*号可看出,Very前面9空格,Good前面……
*也是输出的一部分,别光打印Very Good!
Input
无需输入
Output
**************************
Very Good!
**************************
Sample Output
**************************
Very Good!
***************************/
#include <stdio.h>
int main()
{
printf("**************************\n");
printf(" Very Good!\n");
printf("**************************\n");
return 0;
}
运行结果: