didashao
didashao
关注数: 26
粉丝数: 14
发帖数: 357
关注贴吧数: 24
昊天的女儿或者就是昊天,刚和宁缺PiaPiaPia?.. 如果怀孕了,算啥?
预言贴:这个月老猫更新数字不会超过10W 这么龟毛的速度,和忍者神龟的亲戚---蜗牛有的一拼
新加坡的雷蛇(Razer)的曼巴眼睛蛇(4G)鼠标,比国内贵300啊 雷蛇(Razer)曼巴眼镜蛇 Mamba 游戏鼠标 4G版 新加坡要199新币,1000RMB啊,国内只要700人民币,有谁知道为什么啊,这款鼠标都出一年了,咋差距这么大
★★★★★搜狐正版高清大结局17-18集【中文字幕】★★★★★ http://tieba.baidu.com/mo/q/checkurl?url=http%3A%2F%2Fso.tv.sohu.com%2Fmts%3Fwd%3D%25u8FF7%25u5931&urlrefer=fac42c65e7415fb249fb0008d3faa4d5 RT
水帖,吧主看过就删了吧 实验看看能不能帖图
吧主进来看看,一点小建议 吧主做两个置顶帖给我们这些第一次进的新人,将阿key的资料,节目时间,qq群号介绍下
<新手>求千申钟Brian的资料和图,骨灰级情迷请进 %千明勋%申正焕%金钟民%Brian%他们是情书里的搞笑"王子",常让我笑趴到桌上,可惜本人对他们的资料知道的很少,图片也没有几张,朋友们帮帮忙,将你们知道的都贴上吧,谢了~
千申钟Brian四大天王齐聚首!准备好了吗? %千明勋%申正焕%金钟民%Brian%%%%四大天王终于聚首了!感动啊!六甲七德八福和申大妈是我在情书中印象最深的人,刚开始看情书时喜欢他们是因为他们的绝妙搞笑,后来观看的期数越来越多,可他们的那种独特的搞笑方式仍然是我的最爱,不为别的,只是因为两个字--敬业.在现实中,四大搞笑天王哪一个走出去都是名符其实的腕儿啊,但在节目中无一不是将自己的才华尽敛,只做衬托其他男嘉宾的绿叶,不遗余力的制造着笑声.万般皆负担的千明勋,傻头傻脑的金钟民,将可爱写在脸上的Brian,被神夺去肩膀的申大妈已经成为情书的一部分,而情书正是因为他们的努力才会如此精彩.还记得是在一期Dance-Battle中千明勋和裴涩琪一起跳的复古Dance,那时的他没有负担,唯有认真,将自己对舞蹈的热爱表现的淋漓尽致,我相信那才是真正的千明勋!那才是真正的NRG! 四大天王,Fighting!
刚做的列车时刻表程序,觉得蛮垃圾的,请高手进来改改 这是个列车时刻表程序.要求按地点.车次查询和信息更新,我只做了前面两个,更新不会,高手试试改进改进~~#include struct train{ char first[20]; char last[20]; /**/ char num[20];}t[100];message();form();search();byfirstplace();bylastplace();bytrainnumber();edit();load();FILE *fp;int k;char q,p[20];int i;char order;main() {load();message(); }message() { clrscr(); printf("\n========Menu========\n1.Form\n2.Search\n"); printf("3.Edit\n4.Exit\n==========\nPlease Choose One: "); scanf("%c",&order); switch(order) { case '1':form();fclose(fp);break; case '2': search();fclose(fp);break; case '3': edit();fclose(fp);break; case '4': fclose(fp);exit(); default: message(); };}form() {printf("\n======Table======\nFirstplace\t Lastplace\tTrainnumber\n"); i=0; do{ printf("%s\t %s\t %s\t\n",t[i].first,t[i].last,t[i].num);i++;} while(strlen(t[i].first)>1); printf("\n======================\nAny key to the menu.\n"); getch(); message(); }search() {clrscr(); printf("\n=====Menu=====\n1.byfirstplace.\n2.bylastplace."); printf("\n3.bytrainnumber\n4.Exit\n======\nPlease Choose One: "); scanf("%c",&order); switch(order) { case '1': byfirstplace();break; case '2': bylastplace();break; case '3':bytrainnumber();break; case '4': message();break; default: search(); }; }byfirstplace() { clrscr(); printf("\n======Menu======\n1.Search\n2.Quit\n======\nPlease choose one:"); scanf("%c",&q); switch(q) { case'1':{i=0; k=0; printf("\n=====Search======\nplease enter the first place:"); scanf("%s",p); printf("===========Table===============\n"); do{if(strcmp(p,t[i].first)==0) {printf("\nfirstplace: %s",t[i].first); printf("\tendplace: %s\tnumber: %s",t[i].last,t[i].num); k=1;} i++;}while(strlen(t[i].first)>1); printf("\n============================\n"); getch(); if(k!=1) {printf("\nno train found!\nAny key to the menu.\n"); getch(); }; byfirstplace();}; case'2': search(); default: byfirstplace();}; }bylastplace(){ clrscr(); printf("\n=========Menu======\n1.Search\n2.Quit"); printf("\n=========\nPlease choose one:"); scanf("%c",&q); switch(q) { case'1':{i=0; k=0; printf("\n========Search=================\n"); printf("please enter the first place:"); scanf("%s",p); printf("===========Table===============\n"); do{if(strcmp(p,t[i].last)==0) {printf("firstplace:%s\tendplace:%s\tnumber:%s\n",t[i].first,t[i].last,t[i].num); k=1;}i++;}while(strlen(t[i].first)>1);printf("======================\n"); getch(); if(k!=1){printf("\nno train found!\nAny key to the menu.\n"); getch();}; bylastplace();}; case'2': search(); default: bylastplace();}; }bytrainnumber()
1
下一页