免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1296 | 回复: 1
打印 上一主题 下一主题

请帮看错在哪里?谢谢! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-06 18:36 |只看该作者 |倒序浏览
#!/usr/bin/perl
@words=qw( internet answers printer progam);
@guesses=();
$wrong=0;
$choice=$words[rand @words];
$hangman="0-|--";
@letters=split(//, $choice);
@hangman=split(//, $hangman);
@blankword+(0) x scalar (@hangman);
OUTER:
    while ($wrong<@hangman) {
            foreach $i (0..$#letters) {
                  if ($blankword[$i]) {
                          print $blankword[$i]
                  }else {
                             print "-";
                   }
     }
        print "\n"
           if ($wrong) {
                  print @hangman [0..$wrong-1]
     }
       print "\n Your Guess:";
       $guess=<STDIN>; chomp $guess;
       foreach(@guesses) {
                 next OUTER if ($_ eq $guess);
     }
       $right=0;
        for ($i=0; $i<letters; $i++) {
               if ($letters[$i] eq $guess) {
                    $blankword[$i]=$guess;
                    $right=1;
       }
  }
         $wrong++ unless (not $right);
if (join ('',@blankword) eq $choice) {
         print "you got it right !\n";
           exit;
}
}
print "$hangman \nSorry, the word was $choice.\n";

论坛徽章:
0
2 [报告]
发表于 2006-02-06 20:31 |只看该作者
原帖由 dragon-h 于 2006-2-6 18:36 发表
#!/usr/bin/perl
@words=qw( internet answers printer progam);
@guesses=();
$wrong=0;
$choice=$words[rand @words];
$hangman="0-|--";
@letters=split(//, $choice);
@hangman=split(//,  ...



hello,

when you start a perl program,you should always write these 2 statements at the begin:

use strict;
use warnings;

then you could find out the code's problem,and you can debug against it.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP