题目
编写一个C程序,输出以下信息:
************************** Very Good!**************************
数*号可看出,Very前面9空格,Good前面……
*也是输出的一部分,别光打印Very Good!
输入框
无需输入
输出框
Very Good!
#include <iostream>#include<stdlib.h>//VS的缓冲文件头(后面代码不再介绍)using namespace std;int main (){cout<<\"**************************\"<<endl;cout<<\" Very Good!\"<<endl;cout<<\"**************************\";system(\"pause\");//缓冲return 0;}
运行结果如下图: