毕业设计,毕业论文代写。联系:elevenor@gmail.com

计算机专业毕业设计,论文,设计代写。电邮:elevenor@gmail.com

用户操作
[即时聊天] [发私信] [加为好友]
ctuID:ctu_85
295971次访问,排名187好友1人,关注者16
Resume
ctu_85的文章
原创 40 篇
翻译 2 篇
转载 6 篇
评论 152 篇
ctu_85的公告
我的邮箱(Contact me):

elevenor@gmail.com

IBM技术中心推荐文章

关于Open Source Project的Eclipse 分段线性骨架 分层模型
最近评论
半瓶墨水:最近写了一个在线的华容道解题程序(里面有原理介绍和源码链接,也有在线演示):
http://www.2maomao.com/blog/youxi-hrd-online-resolver/

求解最短路径一般在10ms左右。

游戏发芽网的在线华容道游戏在这里:http://www.fayaa.com/youxi/hrd/
wanghuaguo:好博客。。。。。。。。
QIQI:同意楼上,你只给第一列的前n个初始化了,殊不知所有的值最后都要从第一列中得到,(3,7)就有1021。
bluehouse1985:Linux 环境下的多核调试
— Intel + Totalview 强强联合!
目前,在软件开发行业,各种性能优异的调试工具层出不穷。但是,它们中的绝大部分都只支持windows环境。即使能支持linux平台,操作起来也很不方便。因此,对于长期在linux上编写程序的开发人员来说,如何调试就成了一个令人头痛的问题!Intel软件 和 Total……
qing:楼主给我发些源代码吧,基于Minimum cut的图像分割,基于Average cut的图像分割,基于Normalize cut的图像分割,用matlabl 实现的。谢谢啦!!1
我的邮箱是qinghappy922@sina.com
文章分类
    收藏
    相册
    Forver
    06年从南大到清华
    存档
    软件项目交易
    订阅我的博客
    XML聚合  FeedSky

    原创 浙江大学计算机系硕士研究生复试题目解答(1)收藏

    新一篇: 浙江大学计算机系硕士研究生复试题目解答(2) | 旧一篇: 编译原理实验报告

    题目要求:
    读入两个小于100的正整数AB,计算A+B。需要注意的是:AB的每一位数字由对应的英文
    单词给出。
    具体的输入输出格式规定如下:
    输入格式:测试输入包含若干测试用例,每个测试用例占一行,格式为"A + B =",相邻两
    字符串有一个空格间隔。当AB同时为0时输入结束,相应的结果不要输出。
    输出格式:对每个测试用例输出1行,即A+B的值。

    输入样例:

    one + two
    three four + five six
    zero seven + eight nine
    zero + zero

    输出样例:

    The result is 3
    The result is 90
    The result is 96
    附加要求:
    (1)不能用string.h及其相关库函数
    (2)出错检测机制
    界面要求为:

    源代码如下:

    /*  zju.h

        Copyright (c) 2002, 2006 by ctu_85
        All Rights Reserved.
    */
    #include "stdio.h"
    #define maxnum 32
    #define error -1
    int strcompare(char *);
    int numcompare(char *);
    int compare(char *m,char *c);
    int Done();
    int main()
    {
    int i;
    do
    {
    i=Done();
    }
    while(i);
    return 1;
    }
    int Done()
    {
    char str1[maxnum/2]={'\0'},str2[maxnum/2]={'\0'},temp;
    int i,front=0,low=0,status=0,x,y;
    printf("Please enter your formula,end with command 'zero+zero'\n");
    for(i=0;i<maxnum;i++)
    {
    scanf("%c",&temp);
    if(temp=='\n')
    break;
    if(temp=='+')
    {
    status=1;
    continue;
    }
    if(status==0)/* number 0 or 1 stands for the front part of the formula */
    {
    str1[front]=temp;
    front++;
    }
    else
    if(status==1)
    {
    str2[low]=temp;
    low++;
    }
    }
    if((x=strcompare(str1))!=error&&(y=strcompare(str2))!=error)
    {
    if((x+y)!=0)
    printf("The result is:%d\n",x+y);
    return x+y;
    }
    else
    printf("Invalid input!\n");
    }
    int strcompare(char *c)
    {
    char str1[maxnum/4]={'\0'},str2[maxnum/4]={'\0'};
    int i,temp,tmp,status=1,front=0,low=0,mid=0;/*the number & status of the input*/
    for(i=0;i<maxnum/2;i++)/*abstract the string */
    {
    if(*c=='\0')
    break;
    if(*c==' ')
    {
    mid=1;
    c++;
    }
    if(mid==0)
    {
    str1[front]=*c;
    front++;
    c++;
    }
    else
    if(mid==1)
    {
    status=2;
    str2[low]=*c;
    low++;
    c++;
    }
    }
    if(status==1)
    {
    if((temp=numcompare(str1))!=error)
    return temp;
    else
    return error;
    }
    else
    if(status==2)
    {
    if((temp=numcompare(str1))!=error&&(tmp=numcompare(str2))!=error)
    return temp*10+tmp;
    else
    return error;
    }
    }
    int numcompare(char *c)
    {
    char zero[]="zero";
    char one[]="one";
    char two[]="two";
    char three[]="three";
    char four[]="four";
    char five[]="five";
    char six[]="six";
    char seven[]="seven";
    char eight[]="eight";
    char nine[]="nine";
    int i;
    if(*c=='z')
    {
    if(compare(c,zero))
    return 0;
    else
    return error;
    }
    else
    if(*c=='o')
    {
    if(compare(c,one))
    return 1;
    else
    return error;
    }
    else
    if(*c=='t'&&*(c+1)=='w')
    {
    if(compare(c,two))
    return 2;
    else
    return error;
    }
    else
    if(*c=='t'&&*(c+1)=='h')
    {
    if(compare(c,three))
    return 3;
    else
    return error;
    }
    else
    if(*c=='f'&&*(c+1)=='o')
    {
    if(compare(c,four))
    return 4;
    else
    return error;
    }
    else
    if(*c=='f'&&*(c+1)=='i')
    {
    if(compare(c,five))
    return 5;
    else
    return error;
    }
    else
    if(*c=='s'&&*(c+1)=='i')
    {
    if(compare(c,six))
    return 6;
    else
    return error;
    }
    else
    if(*c=='s'&&*(c+1)=='e')
    {
    if(compare(c,seven))
    return 7;
    else
    return error;
    }
    else
    if(*c=='e')
    {
    if(compare(c,eight))
    return 8;
    else
    return error;
    }
    else
    if(*c=='n')
    {
    if(compare(c,nine))
    return 9;
    else
    return error;
    }
    else
    return error;
    }
    int compare(char *c,char *t)
    {
    for(;*c!=0;c++,t++)
    if(*c!=*t)
    break;
    if(*c=='\0'&&*t=='\0')
    return 1;
    else
    return 0;

    了解更多浙大研究生复试解答请点击

    http://blog.csdn.net/ctu_85/archive/2006/10/16/1336101.aspx
    http://blog.csdn.net/ctu_85/archive/2006/10/30/1357145.aspx
    http://blog.csdn.net/ctu_85/archive/2006/10/31/1357794.aspx

    浙江大学ACM试题解答(四月)
    http://blog.csdn.net/ctu_85/archive/2007/04/24/1576831.aspx
    浙江大学ACM试题解答(三月)
    http://blog.csdn.net/ctu_85/archive/2007/03/20/1535556.aspx

    麻省理工算法导论翻译
    http://blog.csdn.net/ctu_85/archive/2007/06/08/1643179.aspx
    华容道游戏与算法
    http://blog.csdn.net/ctu_85/archive/2007/05/15/1610722.aspx
    中国象棋对战程序C语言源代码
    http://blog.csdn.net/ctu_85/archive/2007/05/04/1596351.aspx

    软件可行性报告
    http://blog.csdn.net/ctu_85/archive/2006/06/06/775894.aspx
    软件需求分析报告
    http://blog.csdn.net/ctu_85/archive/2006/06/06/775892.aspx

    发表于 @ 2006年10月15日 00:25:00|评论(loading...)|编辑

    新一篇: 浙江大学计算机系硕士研究生复试题目解答(2) | 旧一篇: 编译原理实验报告

    评论

    #strasbourg 发表于2006-10-15 08:19:00  IP: 218.92.134.*
    int numcompare(char *c)
    if(*c=='z')
    {
    if(compare(c,zero))
    return 0;
    else
    return error;
    }
    else
    ...
    ...
    我刚看的时候觉得是累赘,后来问了我在浙大的师哥才知道这个是经典的部分,这个是减少算法运行时间的方法
    不能该为
    if(compare(c,zero))
    return 0;
    if(compare(c,one))
    return 1;
    ...
    ...
    else
    return error;
    #ss 发表于2006-11-02 17:31:00  IP: 61.185.221.*
    还是太累赘,不如:

    int nRes = error;

    ...

    if(*c=='z')
    {
    if(compare(c,zero))
    nRes = 0;
    }
    else if
    ..

    return (nRes)
    }
    #算法 发表于2006-11-02 21:06:00  IP: 221.231.54.*
    我觉得不是的
    比如比较four和five两个关键字用ss的方法就不行
    #Zackery 发表于2007-05-24 12:44:20  IP: 88.25.182.*
    dd915abca35997bcc6f66089371211ad http://foto-chiesa-santo-stefano-genova.lxcjch.org/ http://italo-calvino-gli-amori-difficili.pmdxoz.org/ http://prestazione-occasionale-con-ritenuta-d-acconto.itwasb.org/ http://voli-low-cost-roma-brindisi.lxcjch.org/ http://ludovico-einaudi-discografia-colonna-sonore.itwasb.org/ http://azienda-ospedaliera-vittorio-emanuele-gela.sfmyzx.org/ http://gazzetta-ufficiale-26-9-2002.mbduev.org/ http://libro-tre-russo-tre-inglese.qumpvr.org/ http://immagine-full-metal-panic-xxx.nuusjq.org/ http://driver-pc-card-onda-5001.nuusjq.org/ 7798902e03c54f1db3af807b5937ee1b
    #Harley 发表于2007-05-26 00:44:02  IP: 83.49.231.*
    d82fae245b0b2d861fe7fbe1a85362b4 http://download-software-calcolo-busta-paga.nuusjq.org/ http://corsi-di-maya-a-roma.itwasb.org/ http://elemento-costitutivi-270-bis-306.qumpvr.org/ http://100-uomo-piu-belli-del-mondo.lxcjch.org/ http://offerta-viaggio-salento-torre-palo.nuusjq.org/ http://casa-cura-villa-letizia-milano.pmdxoz.org/ http://maria-de-simone-torre-annunziata.pmdxoz.org/ http://the-sims-2-indumento-sex.sfmyzx.org/ http://piano-utilizzazione-aziendale-fabbricato-rurale.itwasb.org/ http://incontro-annuncio-ragazza-sexy-sorde.pmdxoz.org/ f4e92eaca3a0992e5377af9d5fb45ea4
    #Dominic 发表于2007-05-26 16:42:22  IP: 81.203.225.*
    50d807d6d96fdb1ed56e7d2f0a3bc2f4 cultura protestos catho balanca instrumento revista manga kit vunesp foto 3c6c60ce2277246c0f4063c97808fccb
    #Brendon 发表于2007-06-02 10:24:19  IP: 88.2.186.*
    add95cb0e182eebcdc514021a982f7a1 abruzzo retrattili scala dwg scala chiocciola itp elsa morante modena deejay fantateam riassunto novella ciappelletto liesegang lavagna vendita caminetto edilkamin foto tooples simona ventura batterio nitrificanti riassunto libro dracula bram stoker inglese configurazione mms lg b 2050 63aa5c5d6850cbd0ab7a0b3644130d9e
    #Maxim 发表于2007-06-10 01:50:18  IP: 69.70.206.*
    eb621d604c80114020c2804fb54de49a 195753452 http://accessorio-per-compaq-ipaq-batteria.ooqqld.co.in/ cunt185612 http://roberto-benigni-tour-tutto-dante.pifljm.co.in/ http://dragon-ball-z-copertina-dvd.pifljm.co.in/ http://conversione-da-xvid-a-dvd.mksqkw.co.in/ 195751575 Core1982 http://official-pamela-site.blogspot.com/ http://pensione-vecchiaia-differenza-pensione-d-anzianita.hhknox.co.in/ 48c0bb0f30b00789fa1734f152bbea8f
    #Demarcus 发表于2007-06-16 03:03:34  IP: 190.37.41.*
    383fd34a613afa4fbdebd8eef03ab3f6 http://elenco-abilitati-graduatoria-merito-infanzia-messina.asytgp.org/ http://dgr-veneto-23-10-2003.kluoca.org/ http://service-manual-fax-philips-ppf585.asxhjv.org/ http://dell-amore-e-dell-odio.dgrbxq.org/ http://corso-operatore-socio-assistenziale-salerno.dkoomz.org/ http://itc-orientamento-universitario-formazione-sanitaria.asxhjv.org/ http://gp-4wd-crusher-dualforce-prezzo.uvosok.org/ http://posta-marcucci-a-bagno-vignoni.kluoca.org/ http://broken-sword-angelo-morte-download.asxhjv.org/ http://sapore-mare-2-anno-dopo.qtoruw.org/ 017184126313b130655c75e326e14932
    #Cristopher 发表于2007-06-21 09:28:42  IP: 88.2.186.*
    9989cd0abb1f734a304525a161a49244 http://centro-commerciale-emmezeta-montalto-uffugo.cmuvxp.org/ http://i-ragazzi-della-via-pal-riassunto.kzsfzp.org/ http://lettore-dvx-portatile-10-pollici.wdrksm.org/ http://b-e-w-diffusori-acustici.kzsfzp.org/ http://telecomando-meliconi-control-4-codice.tiabis.org/ http://fibromialgia-site-sanihelp-msn-it.kzsfzp.org/ http://le-porte-di-napoli-afragola.cmuvxp.org/ http://si-fa-presentazione-professionale-ppt.cmuvxp.org/ http://ristorante-capoverde-via-leoncavallo-16.rfnfwr.org/ http://parodia-scena-full-metal-jacket.cmuvxp.org/ 3281355dcdf7961a81348339c85b8f61
    #Federico 发表于2007-07-07 08:23:59  IP: 190.48.239.*
    3bf56b506af45631371dbd039e827be0 http://tecniche-di-pesca-sportiva.bubajm.org/ quick silver abbigliamento http://istituto-professionale-marco-polo.ylbtbt.org/ http://visitare-berlino-cosa-vedere.bubajm.org/ http://candy-bouquet-deleware.bubajm.org/ servizi ospedale http://malattia-residenza-domicilio.bubajm.org/ http://oc-sito-ufficiale-italiano.ylbtbt.org/ http://affitto-isole-greche.vtjfdr.org/ http://telaio-harley-davidson.jwwdqu.org/ 268af5f4294519a6b3a74dbb7c6fdf14
    #Ali 发表于2007-07-13 22:29:06  IP: 80.35.199.*
    4fd818c3d0783e72d59f49efb63e0c0e http://casa-modugno.tttfhp.org/ http://documentazione-haccp.njylwy.org/ http://modificare-file-video.mpxxqr.org/ http://farmaco-arimidex-anastrozolo.mhjqva.org/ http://di-villa-castelli.ubetii.org/ http://richiesta-mobilita-bat-1-puglia-infermiera.benlzg.org/ http://sda-currier.benlzg.org/ http://maglieria-felpa-poliestere-puma.mpxxqr.org/ http://negozio-arredamento-parma.hihuft.org/ http://canzone-la-famiglia.mhjqva.org/ 8c2a5fabd273020cebfaea52010ee4bb
    #Demarco 发表于2007-07-15 05:40:53  IP: 201.58.67.*
    37478049632e467d57b07cd6ed7314a8 parere commissione consultiva lavorare biblioteca rivoli torino fiat 412 aerfer annuncio lavoro il resto del carlino fiera ornitologica forli uomo licantropo progressisti futuro relazione transatlantiche roi formazione hotel val d ega ssis firenze a875aa102e91579b074fe29fa7a13e81
    #Nehemiah 发表于2007-07-22 03:56:38  IP: 82.159.114.*
    ba127153b2fba3bfb2adb2a1fffc9ef1 NikkoViverette AsherPollack TrueloveMarc PorterOstrander IsaiahHugh WineingerKade BommaritoChris GardinSincere FausettJosef MustafaKost 1bb5907b91a875f331998f8e4f2b0572
    #kogfwqh@hotmail.com 发表于2007-08-31 16:09:43  IP: 200.59.173.*
    Cool site. Thank you!!!
    wifeysworld
    wife-swapping
    shitzu-puppy
    collie-puppy-akc
    lost-profets
    #kogfwqh@hotmail.com 发表于2007-08-31 16:10:01  IP: 127.0.0.1, 83.4.*
    Cool site. Thank you!!!
    wifeysworld
    wife-swapping
    shitzu-puppy
    collie-puppy-akc
    lost-profets
    #hovuxf@hotmail.com 发表于2007-08-31 21:18:40  IP: 127.0.0.1, 199.*
    Nice site. Thanks!!!
    diaper-lover
    carving-pattern-pumpkin
    diaper-punishment
    jack-lantern-o-pattern
    flipmode-squad
    #yceg@hotmail.com 发表于2007-08-31 23:44:54  IP: 212.178.122.*
    Cool site. Thank you!
    carving-free-pattern
    prada-diaper-bag
    chop-pork-tyra
    loin-cloth
    sock-fetish
    #yjgm@hotmail.com 发表于2007-09-01 01:17:44  IP: 201.53.151.*
    Cool site. Thanks:-)
    loin-pork-recipe
    zuni-fetish
    boob-squad
    bag-douche
    pampers-diaper
    #sxeb@hotmail.com 发表于2007-09-01 02:37:06  IP: 203.145.131.*
    Cool site. Thank you!!!
    chop-pork-stuffed
    chop-vidalia-wizard
    peasant-blouse
    bag-kipling
    blazin-squad
    #viwaqn@hotmail.com 发表于2007-09-01 04:37:39  IP: 127.0.0.1, 80.*
    Good site. Thank you!!!
    satin-fetish
    knuck-if-you-buck
    pork-chop-recipe
    pumpkin-carving-face
    down-blouse
    #viwaqn@hotmail.com 发表于2007-09-01 04:37:59  IP: 146.164.34.*
    Good site. Thank you!!!
    satin-fetish
    knuck-if-you-buck
    pork-chop-recipe
    pumpkin-carving-face
    down-blouse
    #zdyimkr@hotmail.com 发表于2007-09-01 06:53:30  IP: 193.194.69.*
    Cool site. Thanks!
    luvs-diaper
    pumpkin-face-pattern
    blazin-music-squad
    oops-down-blouse
    pantie-hose-fetish
    #ihxytl@hotmail.com 发表于2007-09-01 07:57:11  IP: unknown, 193.*
    Nice site. Thanks!
    down-comforter
    deekers-diaper-page
    kipling-luggage
    fart-fetish
    crush-fetish
    #hpqbzys@hotmail.com 发表于2007-09-01 09:17:56  IP: 72.232.47.*
    Cool site. Thank you!
    huggies-diaper
    cloth-diaper
    pork-sauerkraut
    footballers-wife
    mature-orgasm
    #gykzh@hotmail.com 发表于2007-09-01 11:03:47  IP: 213.239.218.*
    Cool site. Thanks:-)
    gamer-horny
    goat-horny-weed
    puppy-chow-recipe
    spanish-verb-conjugation
    horny-sluts
    #dfrxt@hotmail.com 发表于2007-09-01 12:52:46  IP: 207.234.209.*
    Good site. Thank you!!!
    lusty-puppy
    mature-pantie-hose
    horny-spanish-flies
    free-ultra-vixen
    desperate-wife
    #geid@hotmail.com 发表于2007-09-01 16:53:58  IP: 192.168.1.*
    Good site. Thanks!!!
    butterick-pattern
    diaper-generation-seventh
    ghost-hunter-taps
    com-edline-grade
    jackolantern-pattern
    #geid@hotmail.com 发表于2007-09-01 16:54:10  IP: 164.100.42.*
    Good site. Thanks!!!
    butterick-pattern
    diaper-generation-seventh
    ghost-hunter-taps
    com-edline-grade
    jackolantern-pattern
    #xfak@hotmail.com 发表于2007-09-01 17:59:00  IP: 207.234.209.*
    Nice site. Thanks!!!
    key-lime-pie-recipe
    grade-kiddy
    ghost-picture-sfogs
    how-to-put-on-a-condom
    first-grade-math
    #xfak@hotmail.com 发表于2007-09-01 17:59:04  IP: 64.183.9.*
    Nice site. Thanks!!!
    key-lime-pie-recipe
    grade-kiddy
    ghost-picture-sfogs
    how-to-put-on-a-condom
    first-grade-math
    #qgoc@hotmail.com 发表于2007-09-01 19:01:25  IP: 127.0.0.1, 200.*
    Good site. Thanks!
    wire-fox-terrier
    pampered-chef-recipe
    taps-ghost-hunters
    downgrade-psp
    livewire-music-download
    #qgoc@hotmail.com 发表于2007-09-01 19:01:42  IP: 201.3.91.*
    Good site. Thanks!
    wire-fox-terrier
    pampered-chef-recipe
    taps-ghost-hunters
    downgrade-psp
    livewire-music-download
    #kgoave@hotmail.com 发表于2007-09-01 20:22:35  IP: 196.15.233.*
    Nice site. Thanks:-)
    halloween-psp-tube
    ghost-hunter
    pampered-chef
    ghost-investigates-livewire
    free-lime-wire
    #kgoave@hotmail.com 发表于2007-09-01 20:22:51  IP: 210.212.127.*
    Nice site. Thanks:-)
    halloween-psp-tube
    ghost-hunter
    pampered-chef
    ghost-investigates-livewire
    free-lime-wire
    #dvfytx@hotmail.com 发表于2007-09-01 21:49:10  IP: 68.81.223.*
    Nice site. Thank you.
    ghost-sighting
    bravo-chef-top
    livewire-music
    carving-disney-free
    avenue-catalog-seventh
    #dvfytx@hotmail.com 发表于2007-09-01 21:49:25  IP: 82.99.207.*
    Nice site. Thank you.
    ghost-sighting
    bravo-chef-top
    livewire-music
    carving-disney-free
    avenue-catalog-seventh
    #ljhg@hotmail.com 发表于2007-09-01 23:17:46  IP: 68.180.195.*
    Cool site. Thanks.
    soco-amaretto-lime
    lime-wire-download
    chef-coats
    knitting-pattern-treasury
    day-seventh-slumber
    #ljhg@hotmail.com 发表于2007-09-01 23:17:46  IP: 72.232.200.*
    Cool site. Thanks.
    soco-amaretto-lime
    lime-wire-download
    chef-coats
    knitting-pattern-treasury
    day-seventh-slumber
    #pjkwun@hotmail.com 发表于2007-09-02 00:31:23  IP: 67.90.184.*
    Cool site. Thank you.
    ghost-onyx
    wire-harness
    book-grade-level-reaing
    emulator-psp
    pattern-printable-pumpkin
    #pjkwun@hotmail.com 发表于2007-09-02 00:32:04  IP: 123.248.108.*
    Cool site. Thank you.
    ghost-onyx
    wire-harness
    book-grade-level-reaing
    emulator-psp
    pattern-printable-pumpkin
    #dxganml@hotmail.com 发表于2007-09-02 02:12:26  IP: 164.100.42.*
    Nice site. Thanks:-)
    lime-ware
    tdot-wire
    ghost-ride-whip
    cool-whip
    goon-squad
    #nufcej@hotmail.com 发表于2007-09-02 03:55:37  IP: 204.11.33.*
    Good site. Thanks!
    decyfer-down
    diaper-champ
    lila-downs
    diaper-fetish
    chop-suey-recipe
    #tzldw@hotmail.com 发表于2007-09-02 07:11:32  IP: 59.53.51.*
    Good site. Thanks:-)
    beyonce-deja-lyric-vu
    de-fomi-manualidades
    rich-boi
    ml-to-oz-conversion
    hitachi-magic-wand
    #tzldw@hotmail.com 发表于2007-09-02 07:11:58  IP: 200.31.42.*
    Good site. Thanks:-)
    beyonce-deja-lyric-vu
    de-fomi-manualidades
    rich-boi
    ml-to-oz-conversion
    hitachi-magic-wand
    #cilsora@hotmail.com 发表于2007-09-02 08:07:32  IP: 200.216.75.*
    Good site. Thanks!!!
    de-los-tijuana-tucanes
    wizard-of-oz-tin-man
    magic-teapot
    dr-mehmet-oz
    spm-dope-house-record
    #zhvn@hotmail.com 发表于2007-09-02 09:52:26  IP: 60.190.249.*
    Good site. Thanks.
    wizzard-of-oz
    magic-bullet-blender
    dan-truong
    boi-dope-magic
    de-durango-horoscope
    #aghrbqk@hotmail.com 发表于2007-09-02 11:23:20  IP: 69.1.21.*
    Nice site. Thank you!
    boi-toan
    shaggy-2-dope
    bell-express-vu
    puff-the-magic-dragon
    dorothy-wizard-of-oz
    #ipbdy@hotmail.com 发表于2007-09-02 12:30:27  IP: 193.202.63.*
    Nice site. Thanks:-)
    lam-truong
    de-durango-horoscopos
    de-matiares-pizza
    free-magic-coin
    archangel-de-ghetto
    #amepf@hotmail.com 发表于2007-09-02 13:39:05  IP: 213.132.44.*
    Nice site. Thanks:-)
    six-flag-magic-mountain
    alegres-de-la-los-sierra
    slave-on-dope
    mago-de-oz
    magic-stick
    #vcjz@hotmail.com 发表于2007-09-02 14:56:45  IP: 210.51.51.*
    Cool site. Thank you.
    18000-calorifique-chaleur
    bootys-de-inferieurs
    sk8er-boi
    beyonce-deja-vu
    alegres-de-la-sierra
    #nhxdj@hotmail.com 发表于2007-09-02 17:53:30  IP: 127.0.0.1, 189.*
    Cool site. Thanks!
    magic-juan
    cadetes-de-linares
    da-ja-vu
    carving-pattern-printable
    resepi-chef-wan
    #nhxdj@hotmail.com 发表于2007-09-02 17:53:36  IP: 210.212.127.*
    Cool site. Thanks!
    magic-juan
    cadetes-de-linares
    da-ja-vu
    carving-pattern-printable
    resepi-chef-wan
    #ihfj@hotmail.com 发表于2007-09-02 20:07:10  IP: 213.170.35.*
    Cool site. Thanks:-)
    chef-home-take-tlc
    chef-red-school-seal
    chef-on-a-shoestring
    carving-free-pattern
    pastry-chef
    #kgjwdt@hotmail.com 发表于2007-09-02 21:19:19  IP: 192.115.104.*
    Good site. Thank you.
    edline-grade
    knifty-knitter-pattern
    carving-pattern-pumkin
    beyonce-grade-lyric-up
    keg-taps
    #wdur@hotmail.com 发表于2007-09-03 21:06:14  IP: 158.227.91.*
    Good site. Thank you.
    3-play-preorder-station
    bbz-generator-myspace
    see-thru-pantie
    onan-generator
    legend-raider-through
    #yviet@hotmail.com 发表于2007-09-03 22:13:56  IP: 124.254.63.*
    Very good site. Thank you:-)
    see-through-pantie
    code-lyoko
    amtrak-station
    cytherea-squirt
    angel-lip-lyric
    #hnyczak@hotmail.com 发表于2007-09-04 00:01:47  IP: 82.99.207.*
    Very good site. Thanks!
    resident-evil-2
    leonardo-da-vinci-notebook
    criss-angel-mindfreak
    da-vinci-last-supper
    kriss-angel
    #jtyrz@hotmail.com 发表于2007-09-04 01:35:09  IP: 64.13.250.*
    Very good site. Thank you.
    angel-food-ministry
    alison-krauss-and-union
    angel-locsin-scandal
    one-winged-angel
    generac-generator
    #feja@hotmail.com 发表于2007-09-04 02:45:11  IP: 196.28.230.*
    Good site. Thank you!
    2-lego-star-through
    squirt-gun
    greyhound-bus-station
    squirt-queens
    i-it-joc-know-lyric
    #feja@hotmail.com 发表于2007-09-04 02:45:27  IP: 64.13.250.*
    Good site. Thank you!
    2-lego-star-through
    squirt-gun
    greyhound-bus-station
    squirt-queens
    i-it-joc-know-lyric
    #mekfy@hotmail.com 发表于2007-09-04 03:50:15  IP: 68.180.195.*
    Cool site. Thank you!
    anagram-generator
    cheat-code
    angel-of-airwaves
    see-her-squirt
    angel-locsin
    #aaa 发表于2008-02-01 21:16:17  IP: 60.174.148.*
    Compiling...
    aa.cpp
    C:\Documents and Settings\zt\aa.cpp(18) : warning C4101: 'x' : unreferenced local variable
    C:\Documents and Settings\zt\aa.cpp(18) : warning C4101: 'y' : unreferenced local variable
    C:\Documents and Settings\zt\aa.cpp(39) : error C2143: syntax error : missing ';' before 'if'
    C:\Documents and Settings\zt\aa.cpp(43) : error C2143: syntax error : missing ';' before 'return'
    C:\Documents and Settings\zt\aa.cpp(45) : error C2143: syntax error : missing ';' before 'else'
    C:\Documents and Settings\zt\aa.cpp(54) : error C2137: empty character constant
    Error executing cl.exe.

    aa.obj - 4 error(s), 2 warning(s)
    #张科泽 发表于2008-02-03 15:58:13  IP: 218.71.197.*
    看一下我的代码
    int front[2];
    int trans(char *a)
    {
    char str[15];
    str=a;
    int i=-1;
    while(1)
    {

    i++;
    if(str[i]==' '||str[i]=='+')
    continue;
    else
    break;


    switch(str[i])
    {
    case 'o'; front[0]=0; front[1]=0 break;
    case 't'; front[0]=2; front[1]=1; break;
    case 'f'; front[0]=4; front[1]=1; break;
    case 's'; front[0]=6; front[1]=1; break;
    case 'e'; front[0]=8; front[1]=0; break;
    case 'n'; front[0]=9; front[1]=0; break;
    }
    if(front[0]==0)
    {
    if(str[i+1]!='n')
    front[0]=-1;
    else if(str[i+2]!='e')
    front[0]=-1;
    else;
    }
    else if(front[0]==2)
    {
    if(front[1]==0)
    {
    if(str[i+1]!='w')
    front[0]=-1;
    else if(str[i+2]!='o')
    front[0]=-1;
    else;
    }
    else if(front[1]==1&&front[0]==-1)
    {
    if(str[i+1]!='h')
    front[0]=-1;
    else if(str[i+2]!='r')
    front[0]=-1;
    else if(str[i+3]!='e')
    front[0]=-1;
    else if(str[i+4]!='e')
    front[0]=-1;
    else
    {
    front[0]=3;
    front[1]=0;
    }
    }
    }
    else if(front[0]==4)
    {
    if(front[1]==0)
    {
    if(str[i+1]!='o')
    front[0]=-1;
    else if(str[i+2]!='u')
    front[0]=-1;
    else if(str[i+3]!='r')
    front[0]=-1;
    else
    front[1]=0;
    }
    else if(front[1]==
    发表评论  


    登录
    Csdn Blog version 3.1a
    Copyright © ctu_85