程序清单 17.3

来源:互联网 发布:linux文件目录 编辑:程序博客网 时间:2024/05/22 04:47
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN""http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head><title>Function Example:Average</title><script type="text/javascript">function Average(a,b,c,d){result = (a + b + c + d) / 4;return result;}</script></head><body><h1>Function Example:Average</h1><p>The following is the result of the function call.</p><script type="text/javascript">score = Average(3,4,5,6);document.write("The average is:" + score);</script></body>

0 0
原创粉丝点击