I seem to have run into a peculiar problem. Here is the code
#read a list of strings and print in 20-character column
print "Enter your strings:\n";
chomp(@list = <STDIN>);
foreach $_ (@list){
    printf "\n%20开发者_如何学运维s", $_;
}
The code doesn't print the last element of the array if I don't press enter before invoking end of file CTRL+Z on windows.
EDIT: Here's a sample output
Enter your strings:
a
v
b
                   a
                   v
here I pressed Ctrl-Z after entering b and before pressing enter, and it didn't print b. If I had pressed enter then Ctrl-Z, it would have printed b.
STDOUT is line-buffered when going to a terminal; data doesn't actually get shown until you add a newline. Try:
print "Enter your strings:\n";
chomp(@list = <STDIN>);
print "\n";
foreach $_ (@list){
    printf "%20s\n", $_;
}
or adding $| = 1; before the loop.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论