1 Star 0 Fork 0

java49-王瑞/5.30

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Zhishu.jsp 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
<%@ page language="java" import="java.util.*,java.text.*" 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 'Zhishu.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>求1-100的质数和</h1>
<%! int judgezhishu(int num){
int count=0;
for(int i=1;i<=num;i++){
if(num%i==0){
count++;
}
}
if(count==2){
return num;
}else{
return 0;
}
}
%>
<% int sum=0;
for(int i=1;i<=100;i++){
sum+=judgezhishu(i);
}
%>
<h2><%=sum %></h2>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangrui301/5.30.git
[email protected]:wangrui301/5.30.git
wangrui301
5.30
5.30
master

搜索帮助