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);
    }
    

      

  • 相关阅读:
    java——注解Annotation
    java——maven
    sklearn——回归评估指标
    java——单例模式
    java——极简handler机制
    java——为什么要有接口?和抽象类有什么不一样?
    java——cmd命令编译带包名的源程序
    [loj 2478][luogu P4843]「九省联考 2018」林克卡特树
    「线性基」学习小结
    FOI 冬令营 Day6
  • 原文地址:https://www.cnblogs.com/xmcword/p/13720234.html
Copyright © 2011-2022 走看看