情人节特供Code

预祝 表白失败 & 分手快乐

Date: Feb 14 2020(嗯,没错,情人节,mgj)
Tag: Code


退役OIer情人节应该做什么呢?


当然是Van♂ 游戏写代码啦!


今日份特供代码


保证OIers远离对象,做到虚假的’面向对象‘编程。
只有这样才能认真打游戏写代码

Code:情人节限定款

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <iostream>
#include <cstdio>
#include <time.h>
//情人节限定

time_t t;

bool truth()
{
char conform;
while(1)
{
printf("你确定你可以?[y/N]");
std::cin >> conform;
switch(conform)
{
case 'y':t = time(0);while(time(0)- t <= 2);truth();
case 'N':printf("很有自知之明。Bye"); return 0;
}
printf("ERR:Unexpeced input\n");
}
}

int main()
{
char opt;
while(1)
{
printf("开始表白?[y/N/?]\n");
t = time(0);
std::cin >> opt;
printf("您刚刚犹豫了%d秒\n", time(0) - t);
switch(opt)
{
case 'y':truth(); return 0;
case 'N':printf("很有自知之明。Bye"); return 0;
case '?':t = time(0), printf("别犹豫了"); while(time(0)- t <= 5); printf(",没机会的。"); return 0;
}
printf("ERR:Unexpeced input\n");
}
return 0;
}

还是诚心祝各位有对象的OIers情人节快乐,好好珍惜(也许明天就是别人的了[doge])

The END.


 
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×