1-1 欢迎来的C++世界

1-1 欢迎来的C++世界

Time Limit: 1000MS Memory Limit: 65536KB

Problem Description

C++的输出方法

VC++开发环境,创建一个控制台应用程序,利用C++

Output

 

13行,34*,组成边框的形状,第三行Welcome to ;从第五到第十一行输出的形状C++!”的图形。

Example Input


Example Output

**********************************
*                                *
*          Welcome  to           *
*                                *
*       ***               *      *
*      *   *              *      *
*      *       *     *    *      *
*      *      ***   ***   *      *
*      *       *     *    *      *
*      *   *                     *
*       ***               *      *
*                                *
**********************************

Code realization

#include <iostream>

using namespace std;

int main()
{
    cout <<"**********************************"<< endl;
    cout <<"*                                *"<<endl;
    cout<<"*          Welcome  to           *"<<endl;
    cout<<"*                                *"<<endl;
    cout<<"*       ***               *      *"<<endl;
    cout<<"*      *   *              *      *"<<endl;
    cout<<"*      *       *     *    *      *"<<endl;
    cout<<"*      *      ***   ***   *      *"<<endl;
    cout<<"*      *       *     *    *      *"<<endl;
    cout<<"*      *   *                     *"<<endl;
    cout<<"*       ***               *      *"<<endl;
    cout<<"*                                *"<<endl;
    cout<<"**********************************"<<endl;
    return 0;
}


上一篇:1-3 数组的反序输出


下一篇:数据结构实验之链表一:顺序建立链表