If else condition in perl language



#Alamgir, CSE, JUST
$x = 10;

if($x>10){

    print "False\n";
}
elsif($x==10){
    print "Correct\n";
}
else{
    print "Oh!!!!!!\n";
    }

No comments:

Post a Comment