题目描述
请参照本章例题,编写一个C程序,输出以下信息:
Very Good!
注意:Very前面9空格,Good前面4空格 ,感叹号为英文感叹号 ! ,非中文感叹号 ! (直接复制会出错哦)
*也是输出的一部分,别光打印Very Good!
输入描述
无需输入
输出描述
Very Good!
样例输入
样例输出
Very Good!
示例代码:
#include <iostream>
using namespace std;
int main(){
for(int i=0;i<26;i++)
cout<<'*';
cout<<endl;
cout<<" Very Good!"<<endl;
for(int i=0;i<26;i++)
cout<<'*';
return 0;
}