7-1输出带框文字 分数5全屏浏览题目 切换布局作者张高燕单位浙大城市学院本题要求编写程序,输出指定的带框文字。输入格式:本题无输入输出格式:按照下列格式输出带框文字。WeLcome代码长度限制时间限制内存限制
时间: 2023-05-30 20:05:30 浏览: 386
10_01 V4 (有序表的增删查操作).cpp
5星 · 资源好评率100%
#include <iostream>
using namespace std;
int main() {
cout << "+------------------------+" << endl;
cout << "| |" << endl;
cout << "| WeLcome |" << endl;
cout << "| |" << endl;
cout << "+------------------------+" << endl;
return 0;
}
阅读全文