zoukankan      html  css  js  c++  java
  • P1000 超级玛丽游戏

    洛谷团队希望加入!

    P1000 超级玛丽游戏

    https://www.luogu.com.cn/problem/P1000

    这就很简单了代码:

    #include <iostream>
    #include <cstdlib>
    using namespace std;
    int main()
    {
    	cout << "                ********" << endl;
    	cout << "               ************" << endl;
    	cout << "               ####....#." << endl;
    	cout << "             #..###.....##...." << endl;
    	cout << "             ###.......######              ###            ###" << endl;
    	cout << "                ...........               #...#          #...#" << endl;
    	cout << "               ##*#######                 #.#.#          #.#.#" << endl;
    	cout << "            ####*******######             #.#.#          #.#.#" << endl;
    	cout << "           ...#***.****.*###....          #...#          #...#" << endl;
    	cout << "           ....**********##.....           ###            ###" << endl;
    	cout << "           ....****    *****...." << endl;
    	cout << "             ####        ####" << endl;
    	cout << "           ######        ######" << endl;
    	cout << "##############################################################" << endl;
    	cout << "#...#......#.##...#......#.##...#......#.##------------------#" << endl;
    	cout << "###########################################------------------#" << endl;
    	cout << "#..#....#....##..#....#....##..#....#....#####################" << endl;
    	cout << "##########################################    #----------#" << endl;
    	cout << "#.....#......##.....#......##.....#......#    #----------#" << endl;
    	cout << "##########################################    #----------#" << endl;
    	cout << "#.#..#....#..##.#..#....#..##.#..#....#..#    #----------#" << endl;
    	cout << "##########################################    ############" << endl;
    	return(0);
    }
    

      

  • 相关阅读:
    多线程之线程同步中的锁定lock、Monitor(转)
    信号同步
    窗体间传值的最佳方式
    Semaphore的理解
    推荐算法相关
    基于Spark的GBDT + LR模型实现
    基于Spark和Tensorflow构建DCN模型进行CTR预测
    神经网络(未完)
    互联网金融借款违约预测
    Python3基础复习
  • 原文地址:https://www.cnblogs.com/xmcword/p/13720234.html
Copyright © 2011-2022 走看看