Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a script to check whether user enter a value is a
leap year or not?

Answer Posted / sourisengupta

#call this function by passing the year....


sub isLeapyear
{
$year=shift;
if($year%4==0){
if($year%100==0){
if($year%400==0)
return 1;
return 0;
}
return 1;
}
}

Is This Answer Correct ?    14 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to remove a directory in perl?

940


You want to concatenate strings with perl. How would you do that?

844


What's the difference between /^Foo/s and /^Foo/?

1132


What is Perl?

971


How to merge two arrays in perl?

1004


What are the arguments and what do they mean in perl programming?

971


In CPAN module, name an instance you use.

930


what is Chop & Chomp function does?

958


How do you you check the return code of a command in perl?

964


How to get help for perl?

953


What are the features of perl language?

1042


You want to open and read data files with perl. How would you do that?

859


For a situation in programming, how can you determine that Perl is a suitable?

856


Create a function that is only available inside the scope where it is defined ?

972


How to close a file in perl?

909