免费注册 查看新帖 |

Chinaunix

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

新手:关于perl的if循环 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-03-08 15:10 |只看该作者 |倒序浏览
我是个新手,最近在看小骆驼,因为我是一边看一边巧代码玩,perl的if循环问题请求指教:
print "please input date:";
chomp ($today = <STDIN>);
if ( $today eq monday ){
print "Today is $today\n";
print "you should learn 1111\n";
}
if ( $today eq Tuesday ){
print "Today is $today\n";
print "you should  learn  2222\n";
}
if ( $today eq wednesday ){
print "Today is $today\n";
print "you should learn 3333\n";
}
else {
print "please input data\n";
}
因为我以前都是用linux下的shell,我觉得当我输入monday的时候,只会输出print "Today is $today\n";
print "you should learn 1111\n";
但是事实是连else的结果也同时print了呢???
怎么写才能让它值匹配其中的一个啊???

论坛徽章:
0
2 [报告]
发表于 2013-03-08 15:17 |只看该作者
如果你希望所有的条件只能满足一个,在多个条件下,要用:
if (boolean exp) { exp }
elsif (boolean exp) { exp }
else { exp }

if (boolean exp) { exp }
if (boolean exp) { exp }
else { exp }
的格式,会检查所有的 if 项目

另外你这里明显有语法错误。

$today eq monday 中的 monday 应当用引号标记为一个字符串,不能用裸字写,除非你先声明成一个常量。
应当这样写:$today eq 'monday'

论坛徽章:
0
3 [报告]
发表于 2013-03-08 16:14 |只看该作者
print "please input date:";
chomp ($today = <STDIN>);
if ( $today eq "monday" ){
print "Today is $today\n";
print "you should learn 1111\n";
}
elsif ( $today eq "Tuesday" ){
print "Today is $today\n";
print "you should  learn  2222\n";
}
elsif ( $today eq "wednesday" ){
print "Today is $today\n";
print "you should learn 3333\n";
}
else {
print "please input data\n";
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP