Hi all,
I want to print all even numbers between -100 and 100,exclusef number -12 and 98.
my problem here is I can not print it in file.
best regards,
#!/usr/bin/perl -w
print "give a file name: ";
$fname = <STDIN>;
open FH, ">$fname" or die "Cant open File $!";
# with a for loop
$i =...