码迷,mamicode.com
首页 > Web开发 > 详细

ch03_1_first.jsp

时间:2017-09-24 00:28:45      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:输出   sum   text   htm   encoding   时间   功能   html   int   

计算1~10的和,并在页面上输出计算结果。

<%@page  contentType="text/html" import="java.util.*"pageEncoding="UTF-8"%>

<html>

<head>     <title>一个简单的JSP程序示例</title></head>

<body>

<%! int sum=0,x=1;%>

<% while(x<=10){

sum+=x;++x;

}

%>

<h3>该程序的功能是计算1到10的累加和,并显示运行时间!</h3>

<p>1加到10的结果是:<%=sum%>   </p>

<p>程序的运行日期是:<%=new Date()%></p>

</body>

</html>

ch03_1_first.jsp

标签:输出   sum   text   htm   encoding   时间   功能   html   int   

原文地址:http://www.cnblogs.com/Anei/p/7583555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!