1 Star 0 Fork 0

java49-王瑞/5.30

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ruannian.jsp 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'ruannian.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<h1>2000-2018有几个闰年</h1>
<%! int findYear(int year){
if(year%100!=0&&year%4==0||year%400==0){
return 1;
}else{
return 0;
}
}
%>
<%
int count=0;
for(int year=2000;year<=2018;year++){
count+=findYear(year);
}
%>
<h2><%=count %></h2>
</body>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangrui301/5.30.git
[email protected]:wangrui301/5.30.git
wangrui301
5.30
5.30
master

搜索帮助