level 7
#include
int main(){char *_="A(dg~m(qg}";while(*(_++)!='\0' && printf("%c",*_));return 0;}
2008年02月17日 17点02分
1
level 9
得,,,开始流行这个了,,,,不过好像就是不分行横着写啊,,,,风雨破螃蟹,,,,
2008年02月17日 17点02分
2
level 0
你这东西...效果和puts(_+1);不是一样。没学到本质呀。还是好好的去写格式优美的代码吧。
2008年02月17日 17点02分
3
level 7
#include
int main() {char *_="A(dg~m(qg}";while(*(_)!='\0' && printf("%c",*(_++)^8));getch();return 0;} 上边的写错了- -应该是这个..
2008年02月17日 18点02分
4
level 7
#include
int main() {char *_="A(dg~m(qg}";while(*(_)=='\0'?putc(*(_++)^8,stdout)):return 0;} 哈哈..这样
捏
..
2008年02月17日 18点02分
5
level 7
#include
int r(){getch();exit(0);}int main() {char *_="A(dg~m(qg}";while(*(_)=='\0' ? r():putc(*(_++)^8,stdout));}
2008年02月17日 18点02分
7
level 7
#include
int main() {char *_="A(dg~m(qg}";while(*(_)!='\0'&&putc(*(_++)^8,stdout));return 0;} 还是这样好一点..你们就不能说点好听的么ToT
2008年02月17日 18点02分
8
level 7
#include
int main() {char *_="A(dg~m(qg}";for(;*_;putc(*(_++)^8,stdout));return 0;}
2008年02月17日 18点02分
10
level 7
么啥..是个表白的..无聊程序好久不写了.今天看到我们学校一堆人在写鸟语..我就把这个写上了
2008年02月17日 18点02分
11
level 7
#include
int main() {char *_="A(dg~m(qg}";for(;*_;putch(*_++^8));return;}
2008年02月17日 18点02分
12
level 7
#include
int main() {char *_="A(dg~m(qg}";for(;*_;putch(*_++^8));*_=5;}嘿嘿..getch()"优化"成*_=5;...哈哈管他是正确还是错误反正停下来了..
2008年02月17日 18点02分
13
level 0
main(){char *_="L%ijs`%|jp";while(putch(*_++^5));}
2008年02月18日 02点02分
15
level 8
#include
int main() {char *_="A(dg~m(qg}";while(*(_++)!='\0' && printf("%c",*_));return 0;} 比mr的好看多了很明了的代码!!!(对比mr)
2008年02月18日 11点02分
19
level 0
有空多看看软件工程,先学会写简洁明了、规范的代码先。
2008年02月18日 11点02分
20