- UID
- 60409
- 帖子
- 654
- 精华
- 0
- 威望
- 215
- 阅读权限
- 100
- 注册时间
- 2004-2-20
|
4#
发表于 2006-9-22 19:19
| 只看该作者
好没 难度的智商题目 一看源代码 答案都有了 = =|
function calculate(theForm){
var storea=0;
if(theForm.q1.value=="m"||theForm.q1.value=="M"){storea+=6;}
if(theForm.q2.value=="15"){storea+=6;}
if(theForm.q3.value=="8"){storea+=6;}
if(theForm.q4.value=="6"){storea+=6;}
if(theForm.q5.value=="5"){storea+=6;}
if(theForm.q6.value=="4"){storea+=6;}
if(theForm.q7.value=="1"){storea+=6;}
if(theForm.q8.value=="2"){storea+=6;}
if(theForm.q9[1].checked){storea+=6;}
if(theForm.q10[3].checked){storea+=5;}
if(theForm.q11[2].checked){storea+=5;}
if(theForm.q12[0].checked){storea+=5;}
if(theForm.q13[2].checked){storea+=5;}
if(theForm.q14[3].checked){storea+=5;}
if(theForm.q15[2].checked){storea+=5;}
if(theForm.q16[2].checked){storea+=5;}
if(theForm.q17[1].checked){storea+=5;}
if(theForm.q18[3].checked){storea+=5;}
if(theForm.q19[3].checked){storea+=5;}
if(theForm.q20[3].checked){storea+=5;}
if(theForm.q21[2].checked){storea+=5;}
if(theForm.q22[2].checked){storea+=5;}
if(theForm.q23[3].checked){storea+=5;}
if(theForm.q24[1].checked){storea+=5;}
if(theForm.q25[0].checked){storea+=5;}
if(theForm.q26[0].checked&&theForm.q26[3].checked){storea+=5;}
if(theForm.q27[1].checked&&theForm.q27[2].checked){storea+=5;}
if(theForm.q28[0].checked&&theForm.q28[3].checked){storea+=5;}
if(theForm.q29[1].checked&&theForm.q29[3].checked){storea+=5;}
if(theForm.q30[3].checked){storea+=5;}
if(theForm.q31[2].checked){storea+=5;}
if(theForm.q32[1].checked){storea+=5;}
if(theForm.q33[2].checked){storea+=5;}
var i = document.clock.face.value;
return confirm("谢谢你参加智商测试!\n\n"+
"你的智商为:"+storea+"\n\n"+
"您所用的时间:" +i+"\n"+
"===================================\n70- --弱智\n"+
"70-89 --智力低下\n"+
"90-99 --智力中等\n"+
"100-109--智力中上\n"+
"110-119--智力优秀\n"+
"120-129--智力非常优秀\n"+
"130-139--智力非常非常优秀\n"+
"140+ --天才");
}
//end of the Calculator IQ Score functions |
|