每周一水:无解的死循环
这是个经典的死循环笑话,虽然有点老有点火星,但相信还是有很多人没看到过。
老总对秘书说:这几天我带你去北京走走,你准备下。
秘书打电话给老公:这几天我要和老总去北京开会,你自己照顾自己。
老公给情人打电话:我老婆这几天要去北京出差,我们也出来玩吧。
情人给辅导功课的小男孩打电话:这几天不用上课,我有事情。
小男孩给爷爷打电话:爷爷,这几天老师有事,不用上课,你陪我玩吧。
爷爷给秘书打电话:我这几天要陪孙子玩,不能去北京了。
秘书给老公打电话:这几天老总有急事,我们不去北京开会了。
老公给情人打电话:这几天不能出来玩,我老婆不去北京了。
情人给辅导功课的小男孩电话:这几天继续正常上课。
小男孩给爷爷电话:爷爷,这几天还是要上课,我不能陪你玩了。
爷爷给秘书电话:这几天我还是带你去北京走走的,你准备下……
相关日志
Tags: 每周一水




九月 12th, 2009 at 14:12
是很老.
九月 12th, 2009 at 14:16
火星了。。。
九月 12th, 2009 at 14:47
前三
LX木有小JJ
九月 12th, 2009 at 15:22
我经常写一些死循环的代码来显示一些东西,不过pcd回复貌似不支持贴代码……
九月 12th, 2009 at 15:24
注:本人女生……
var i:qword;
begin
i:=0;
while true do
begin
writeln(‘PCD,Great!’);
inc(i);
if i=18446744073709551615 then i:=0;
end;
end.
九月 12th, 2009 at 15:59
貌似”爷爷”写成”老总”了…汗颜中.
九月 12th, 2009 at 16:01
while(1==1){
println(“注:本人男生……”)
}
九月 12th, 2009 at 16:05
4L真的木有小JJ哎~
九月 12th, 2009 at 16:19
#include
void main()
{
while(1)
printf(“我爱pcd”。);
}
九月 12th, 2009 at 17:38
LZ火星了
int main(){
while (1){
cout<<" 木有小JJ"<<endl;
}
return 0;
}
九月 12th, 2009 at 17:58
LS的代码……
九月 12th, 2009 at 18:11
很老很经典
九月 12th, 2009 at 18:14
kitekiller
九月 12th, 2009 at 15:59
貌似”爷爷”写成”老总”了…汗颜中.
==================================
爷爷就是老总呀,有什么汗颜的。
九月 12th, 2009 at 20:34
这个笑话好像在N年前看过,也不记得是多久的时间啦……
九月 12th, 2009 at 21:40
白菜、萝卜、海带、粉丝、豆腐兴高采烈地去饭店。
人问:干嘛去?
“去吃涮锅!”
那人接着问:谁请客啊?
“羊肉呗!”
九月 12th, 2009 at 22:41
一开始是老板和秘书,到最后都变成爷爷和秘书了,囧
九月 13th, 2009 at 0:56
FOR i=1 TO 1 STEP 0
PRINT(“PCDigest”)
PRINT
END
BASIC都忘差不多了…
九月 13th, 2009 at 1:22
确实是死的。。
九月 13th, 2009 at 14:36
呵呵,竟然成了代码贴了~
九月 13th, 2009 at 14:44
main{}
{int i;
for(i=1,i<3,i++)
{ i=1;}
}
九月 13th, 2009 at 14:45
main() 很多年没写了。。
九月 13th, 2009 at 18:33
…………
九月 13th, 2009 at 21:55
呵呵,贴个图..
九月 13th, 2009 at 21:57
啊….看不到图
九月 14th, 2009 at 18:46
囧,现在都学C++,没人理Pascal……
大家都去学java吧……
九月 14th, 2009 at 19:20
那可不是,pascal是非常好的语言,我就是从pascal开始学编程的,学好pascal就可以用delphi进行开发啦…LS加油, again. LS木有小JJ
九月 15th, 2009 at 8:27
while(1)
{
printf(”顶”);
}
九月 16th, 2009 at 16:55
写代码的,都好恶毒啊,
九月 16th, 2009 at 20:58
四楼的是位高三女学生?
九月 23rd, 2009 at 17:22
来个智障的程序语言…brainfuck语言的代码
自己编译吧,是一段话哟!!!
++++++++++[>+++++++>++++++>+++>+<<<+++.>>++.<>.<+++++++.+.>+….>.
九月 23rd, 2009 at 17:26
++++++++++[>+++++++>++++++>+++>+<<<+++.>>++.<>.<+++++++.+.>+….>.
貌似传不上来….不能完整发上来,残念
十一月 21st, 2009 at 11:38
注:本人小学生
procedure ILovePCD;
var
e:boolean;
begin
e:=false;
while e=false do
messagebox(0,PChar(‘我爱pcd’,'死循环’,MB_OK);
end;
十一月 21st, 2009 at 11:40
bat
————-
start:
@echo I Love pcd!
@goto start
————-
十一月 21st, 2009 at 11:42
label start;
begin
start:
write(‘I Love PCD’);
goto start;
end;