免费注册 查看新帖 |

Chinaunix

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

求助,输入结束不能,输入和输出的顺序颠倒 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-01-28 21:10 |只看该作者 |倒序浏览
列表输入结束不能,windows系统,ctrl+z无效,回车ctrl+z回车也无效,ctrl+abcdefg...xyz都不行,求大神告知怎么办
还有一个问题,代码里面有输入的时候,前面的print的内容不显示,要在输入结束之后才一起显示,请问是什么问题,比如:
print"a=";
$a=<STDIN>;
print"b=";
$b=<STDIN>;
print"a+b=".($a+$b);

本来应该是a=1
              b=1
              a+b=2
但是运行的时候先让我输入,就成了1
                                             1
                                             a=b=a+b=2

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
2 [报告]
发表于 2015-01-28 21:26 |只看该作者
本帖最后由 jason680 于 2015-01-28 21:32 编辑

回复 1# hbr1234stc

$ perl in.pl
a=1
b=1
a+b=2


$ cat in.pl
use strict;
use warnings;


$| = 1;
print "a=";
my $sA = <STDIN>;
print "b=";
my $sB = <STDIN>;
print "a+b=" . ($sA + $sB) . "\n";




$ perldoc perlvar
NAME
    perlvar - Perl predefined variables

DESCRIPTION
  The Syntax of Variable Names
    Variable names in Perl can have several formats. Usually, they must begin
    with a letter or underscore, in which case they can be arbitrarily long
    (up to an internal limit of 251 characters) and may contain letters,
    digits, underscores, or the special sequence "::" or "'". In this case,
    the part before the last "::" or "'" is taken to be a package qualifier
    see perlmod.

    ...

    HANDLE->autoflush( EXPR )
    $OUTPUT_AUTOFLUSH
    $|      If set to nonzero, forces a flush right away and after every write
            or print on the currently selected output channel. Default is 0
            (regardless of whether the channel is really buffered by the
            system or not; $| tells you only whether you've asked Perl
            explicitly to flush after each write). STDOUT will typically be
            line buffered if output is to the terminal and block buffered
            otherwise. Setting this variable is useful primarily when you are
            outputting to a pipe or socket, such as when you are running a
            Perl program under rsh and want to see the output as it's
            happening. This has no effect on input buffering. See "getc" in
            perlfunc for that. See "select" in perlfunc on how to select the
            output channel. See also IO::Handle.

            Mnemonic: when you want your pipes to be piping hot.

论坛徽章:
0
3 [报告]
发表于 2015-01-28 21:41 |只看该作者
回复 2# jason680

感谢回复这么多,但是我没看懂……我是初学者,能不能麻烦稍微用中文解释下?
   

论坛徽章:
0
4 [报告]
发表于 2015-01-28 23:37 |只看该作者
输出的数据不会放在输出缓冲去里,直接输出
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP