Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by YO ( 13 years ago )
<?php
$dizi = array (8,9,10,11,12,13,49);
$a = $dizi[1] * $dizi[2];
$b = $dizi[0] * $dizi[3];
$c = $dizi[4] * $dizi[5];
$d = $dizi[6];
echo "$a <br/>";
echo "$b <br/>";
echo "$c <br/>";
if($a > $d){
echo 'Sonuc 49dan buyuk hata';
}else{
echo "sayi gecerli sayi : $a";
}
echo '<br />';
if($b > $d){
echo "Sonuc 49'dan buyuk hata";
}else{
echo "sayi gecerli sayi : $b";
}
echo '<br />';
if($c > $d){
echo "Sonuc 49'dan buyuk hata";
}else{
echo "sayi gecerli sayi : $c";
}
?>
Revise this Paste