cored has asked for the wisdom of the Perl Monks concerning the following question:
what do you think... and give me some help plz i want to learn...#!/usr/bin/perl -w use strict; my $vlnum = 0; print "Introduzca un numero: "; chomp ( $vlnum = <STDIN> ); for(1..10){ print "$vlnum * $_ =", $vlnum * $_; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Mathematics skills
by Zaxo (Archbishop) on Oct 11, 2002 at 22:36 UTC | |
|
Re: Mathematics skills
by Aristotle (Chancellor) on Oct 12, 2002 at 14:22 UTC | |
by grinder (Bishop) on Oct 12, 2002 at 17:30 UTC | |
by Aristotle (Chancellor) on Oct 12, 2002 at 17:59 UTC |