Konu
ASP asal sayı yardım
02-12-2010, 12:30:17
#2
tolgasen
🌐 𝘀𝗼𝗰𝗶𝗳𝗹𝘆.𝗰𝗼𝗺
10 ile 100 arası;
<%
for i = 10 to 100
if not i mod 2 = 0 and not i mod 3 = 0 and not i mod 4 = 0 and not i mod 5 = 0 and not i mod 6 = 0 and not i mod 7 = 0 and not i mod 8 = 0 and not i mod 9 = 0 then
Response.Write i&"<br />"
end if
next
%>