2898 - 新年好

编写程序在屏幕上显示:

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

       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;
}
时间限制 1 秒
内存限制 128 MB
讨论 统计
上一题 下一题