实验1-6 输出带框文字 (5 分)
1. 题目摘自
https://pintia.cn/problem-sets/13/problems/256
2. 题目内容
本题要求编写程序,输出指定的带框文字。
输入格式:
本题无输入
输出格式:
按照下列格式输出带框文字。
Welcome
3. 源码参考
#include<iostream>
using namespace std;
int main()
{
cout<<"************"<<endl;
cout<<" Welcome"<<endl;
cout<<"************"<<endl;
return 0;
}