开发一个简单的考试系统,在HTML页面中建立一个表单,通过POST方法传递参数,题目类型包括单选题、多选题和填空题,要求程序给出考试成绩。页面参考如图1,请在下方贴上question.html的源码及其运行效果。
图1 运行效果
源码:
<!DOCTYPE html>
<html>
<head>
<title>question.html</title>
<meta name="content-type" content="text/html" charset=UTF-8>
</head>
<body>
<a>请回答下面问题: </a>
<form action="" method="post">
<table>
<tr><td>1.Windows操作系统是那家公司产品?
<input type="radio" name="cooperation" value="apple">apple公司
<input type="radio" name="cooperation" value="ibm">IBM公司
<input type="radio" name="cooperation" value="microsoft">Microsoft公司
</td></tr>
<tr><td>2.下列设计语言,那些事面向对象的?
<input type="checkbox" name="language" value="java">java语言
<input type="checkbox" name="language" value="c">c语言
<input type="checkbox" name="language" value="c++">c++语言
</td></tr>
<tr><td>3.编写Servlet程序应该继承那个类?
<input type="text" name="impClass" size