JSP第一周作业

求1-100之间的所有素数之和。

<%@ 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 'index.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>
    求1-100之间的所有素数之和。
    <hr>
    <br>
</body>
<%
    int a, b, sum = 0;
    for (a = 1; a <= 100; a++) {
        for (b = 2; b < a; b++) {
            if (a % b == 0) {
                break;
            }
        }
        if (b == a) {
            sum += a;
        }
    }
%>
1-100的之间的所有素数之和为:
<%=sum%>
</html>

posted @ 2021-03-03 21:20  可爱小李没脑袋  阅读(40)  评论(0)    收藏  举报