免费注册 查看新帖 |

Chinaunix

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

if中的条件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-10-11 01:08 |只看该作者 |倒序浏览
#!/usr/bin/perl
# A Political evaluation script
$a = "A";
$b = "B";
if ($a >; $b){
print "$a wordinake a better Presideut\n";
}
if ($a < $b){
print "$b word make a betler Presiclent\n";
}
if ($b = $a){
print "$a or $b, tlere's no Diflereue\n";
}

192# perl 1.pl
A or A, tlere's no Diflereue
192#
在这个程序中,为什么会看做$a与$b相等,
另外if条件只是判断的啊,为什么会把$a的值附给$b呢,

thanks

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2003-10-11 10:10 |只看该作者

if中的条件

because you use ==  operator,
so perl will cast both side var to integer....
and $a='A'; will translate to '0',
and $b='B' will also translate '0',
so the result is not wrong...

$a=ord('A');
$b=ord('B');
will get  correct  answer...

论坛徽章:
0
3 [报告]
发表于 2003-10-11 11:06 |只看该作者

if中的条件

嗯,我明白了,多谢老兄了,

< >; ==这些都是用于数字比较的,而字符比较需要运用lt gt eq等等,

另外=是用来附值的,==才是用来比较是否等于的,多谢老兄了,
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP