1405 - C语言-打印
请参照本章例题,编写一个C程序,输出以下信息:
**************************
Very Good!
**********
数*号可看出,Very前面9空格,Good前面……
*也是输出的一部分,别光打印Very Good!
Input
无需输入
Output
**************************
Very Good!
**********
Examples
Input
无需输入
Output
**************************
Very Good!
**************************
Solution C
#include<stdio.h> int main() { printf("**************************\n"); printf(" Very Good!\n"); printf("**************************\n"); return 0; }
Solution C++
#include<iostream> using namespace std; int main() { cout<<"**************************"<<endl; cout<<" Very Good!"<<endl; cout<<"**************************"<<endl; return 0; }