2898 - 新年好

通过次数

0

提交次数

0

时间限制 : 1 秒 内存限制 : 128 MB

编写程序在屏幕上显示:

*****************************

       Happy New Year!

*****************************

注意:

29个星号,Happy New Year!首字母大写,中间1个空格隔开,末尾有英文叹号。

H之前7个空格,叹号之后没有空格。

一共3行,中间没有空行。

题目输入

没有输入

题目输出

*****************************

       Happy New Year!

*****************************

输入/输出样例

输入格式

no input needed

输出格式

*****************************
       Happy New Year!
*****************************

C++解答

#include<iostream>
using namespace std;
int main()
{
	cout<<"*****************************"<<endl;
	cout<<"       Happy New Year!"<<endl;
	cout<<"*****************************"<<endl;
}