if isNumeric(tp) then if (tp Mod 2)=0 then response.write tp&"是偶数"
else
response.write tp&"是奇数"
end if
else
response.write tp&"不是数字"
end if作者: first 时间: 2010-1-11 06:06
晕,楼上的楼上写的是.net?作者: 十六夜的月 时间: 2010-1-11 06:07
把0忘了作者: 深水海狗 时间: 2010-1-11 06:07
很简单的,比如
int a=2;
if(a%2==0)
{
Response.Write("是偶数");
}
else
{
Response.write("是奇数");
}