1006: 第一个c程序


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;
}