mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
print words up to 99 letters long
This commit is contained in:
parent
37f889703a
commit
c955c24dc3
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ print "Number of letters: $letterCount\n\n";
|
|||
|
||||
print "**** word sizes ****\n";
|
||||
print "SIZE COUNT PERCENT\n";
|
||||
for ( my $i = 1 ; $i <= 15; ++$i ) {
|
||||
for ( my $i = 1 ; $i <= 99; ++$i ) {
|
||||
my $count = $wordSizeCounts[$i];
|
||||
if ( $count > 0 ) {
|
||||
my $pct = (100.00 * $count)/$wordCount;
|
||||
|
|
Loading…
Reference in a new issue