写在前面:

临近考试周,我这个菜鸡除了要面对下图的各种考试,还要交C++、JAVA、数据结构的实验课期末大作业(也就是课程设计啦)。

30多天的时间,要在准备期末考试的同时,完成3个大作业,最可怕的应该就是bug了。所以我在每个大作业动笔之前动键盘之前迷信一波,先运行下这个程序,求神兽保佑永无bug。 

召唤神兽的代码:

#include <bits/stdc++.h>
using namespace std;int main()
{string str0 = "┌─┐";string str1 = "┌──┘";string str2 = "┴───────┘";string str3 = "┴──┐";string str4 = "│";string str5 = "──";string str6 = "─┬┘";string str7 = "└┬─";string str8 = "─┴─";string str9 = "└───┐";string str10 = "┌───┘";string str11 = "└──────────────┐";string str12 = "├─┐";string str13 = "┌─┘  ";string str14 = "└─┐";string str15 = "┐";string str16 = "┌───────┬──┐";string str17 = "┌──┘";string str18 = "┤";string str19 = "└──┴──┘";cout << setw(31) << str0 << setw(13) << str0 << endl;cout <<setw(30)<< str1 <<setw(19)<<str2<<setw(9)<<str3<< endl;cout << setw(24) << str4 <<setw(19)<<str4<< endl;cout << setw(24) << str4 << setw(11) <<str5<<setw(10)<< str4 << endl;cout << setw(24) << str4 << setw(19) << str4 << endl;cout << setw(24) << str4 << setw(9)  << str6 << setw(11) << str7 << setw(5) << str4 << endl;cout << setw(24) << str4 << setw(19) << str4 << endl;cout << setw(24) << str4 << setw(19) << str4 << endl;cout << setw(24) << str4 << setw(13) << str8 <<setw(9)<<str4<< endl;cout << setw(24) << str4 << setw(19) << str4 << endl;cout << setw(32) << str9 << setw(19)<< str10 << endl;cout << setw(28) << str4 << setw(11) << str4 << endl;cout << setw(28) << str4 << setw(11) << str4 << endl;cout << setw(28) << str4 << setw(11) << str4 << endl;cout << setw(28) << str4 << setw(11) << str4 << endl;cout << setw(28) << str4 << setw(41) << str11 << endl;cout << setw(28) << str4 << setw(26) << str4 << endl;cout << setw(28) << str4 << setw(30) << str12 << endl;cout << setw(28) << str4 << setw(32) << str13 << endl;cout << setw(28) << str4 << setw(26) << str4 << endl;cout << setw(32) << str14 <<setw(4)<<str15<<setw(26)<<str16<<setw(10)<<str17<< endl;cout << setw(30) << str4 <<setw(4)<<str18<<setw(4)<<str18<<setw(9)<<str4<<setw(4)<<str18<<setw(4)<<str18<< endl;cout << setw(42) << str19 <<setw(21)<<str19<< endl;cout << "  " << endl;cout << setw(43) << "神兽保佑"<<endl;cout << " " << endl;cout << setw(43) << "永无bug!" << endl;system("pause");return 0;
}

神兽保佑,永无bug!相关推荐

  1. 佛祖保佑永无Bug—— 最好用的注释插件

    摘要:作为一个有思想有个性的程序员写的代码一定是要有风格的,比如什么佛祖保佑永无Bug.神兽护体等形式的注释,既有趣又个性.给大家介绍一个非常有中国风的注释插件koroFileHeader,我们先来了 ...

  2. 注释工具一键添加佛祖保佑永无BUG、神兽护体等注释图案

    很早之前就见过各种佛祖保佑永无BUG.神兽护体等形式的注释,感觉很有趣,蛮骚的

  3. 佛祖保佑永无BUG 神兽护体 代码注释(各种版本)

    佛祖保佑 永无BUG 注释 1: /*_ooOoo_o8888888o88" . "88(| -_- |)O\ = /O____/`---'\____.' \\| |// `./ ...

  4. java 佛祖保佑_佛祖保佑 永无bug 注释模板设置详解(仅供娱乐)

    1.注释模板效果图 今天在网上看到一段有趣的注释,佛祖保佑 永无bug, 效果如下图所示: 代码如下所示: /** * _ooOoo_ * o8888888o * 88" . "8 ...

  5. 程序员必备注释模板——“佛祖保佑 永无bug“

    佛祖保佑注释模板(一) /*** _ooOoo_* o8888888o* 88" . "88* (| -_- |)* O\ = /O* ____/`---'\____* .' \\ ...

  6. 好玩的代码注释图 神兽保佑 代码无bug

    好玩的代码注释 // // ┏┛ ┻━━━━━┛ ┻┓ // ┃ ┃ // ┃ ━ ┃ // ┃ ┳┛ ┗┳ ┃ // ┃ ┃ // ┃ ┻ ┃ // ┃ ┃ // ┗━┓ ┏━━━┛ // ┃ ┃ ...

  7. Android Studio 佛祖保佑 永无bug 注释模板设置详解(仅供娱乐)

    1.注释模板效果图 今天在网上看到一段有趣的注释,佛祖保佑 永无bug, 效果如下图所示:  代码如下所示: /*** _ooOoo_* o8888888o* 88" . "88* ...

  8. 佛祖保佑 永无bug

    为什么80%的码农都做不了架构师?>>>    /*_ooOoo_o8888888o88" . "88(| -_- |)O\ = /O____/`---'\___ ...

  9. 佛祖保佑永无BUG 代码 (各种样式)

    让自己的项目启动控制台更优美,尝试一下加入这些吧 SSM需要在日志上配置才可以,以下演示SpringBoot SpringBoot项目 在resources下创建一个空的txt文档(名字随便起),然后 ...

  10. 佛祖保佑永无BUG python版本

    佛祖保佑 永无BUG # # _ooOoo_ # o8888888o # 88" . "88 # (| -_- |) # O\ = /O # ____/`---'\____ # . ...

最新文章

  1. [搜索]一种分词的实现(2)
  2. 进程句柄表初始化,扩展,插入删除句柄源码分析
  3. easy connect 获取服务端配置信息失败_安装配置mysql
  4. 洛谷P3649 [APIO2014]回文串(回文自动机)
  5. 8. 字符串转整数 (atoi)
  6. Java——全局变量与局部变量的区别
  7. 企业架构之道(二)企业架构方法论体系
  8. 整型变量和整型常量呀
  9. ABYY FineReader PDF软件最新15个人​版安装下载步骤教程
  10. Android消息机制和应用
  11. Python有嘻哈:Crossin教你用代码写出押韵的verse
  12. 基于JAVA学生用品采购系统计算机毕业设计源码+系统+数据库+lw文档+部署
  13. [RK3288][Android6.0] 调试笔记 --- adb无法安装apk提示签名错误
  14. img图片在webpack中使用
  15. 中国石油大学《政治学原理》第二次在线作业
  16. HNUST OJ 2205 队伍能力值
  17. Myeclipse和idea对比
  18. Java 手写一个SQL分页
  19. 制作视频给多个视频简单添加字幕,滚动字幕的制作步骤
  20. 汽车之家配置参数抓取

热门文章

  1. 【前端进阶】前端进阶知识补充
  2. 垃圾分类回收APP开发解决方案
  3. 【基础逻辑】对位乘法与升多项式子项根号——柯西不等式
  4. GPU会变得更便宜吗?GPU 定价更新
  5. 职场礼仪_举止_站姿
  6. 考研—计算机网络—应用层
  7. python能否取代excel_行,Python玩大了!​取代Excel,程序员:太牛!你怎么看?...
  8. 【福利倒计时】春风十里不如程序猿的专属福利,拿了这份,2018值了~
  9. 怎样把电脑默认安装C盘的位置改成D盘?
  10. 20200801猿辅导笔试记录