<html>
<head>
<title> başlık </title>
</head>
<script type="text/javascript">
var sayi=prompt("asallık testi için bir sayı giriniz");
if(sayi>2)
{
var bolenMax=Math.floor(Math.sqrt(sayi));
var bolen=2;
var sonuc="sayısı asal";
while(bolen<=bolenMax)
{
if(sayi%bolen==0)
{
sonuc="sayisi asal değil";
break;
}
bolen++;
}
document.write(sayi+" "+sonuc);
}
else
{
document.write("0,1 ya da negatif sayılar asal olamaz");
}
</script>
</html>
Hiç yorum yok:
Yorum Gönder