JSP第一周作业

  1. 环境搭建,运行出来一个JSP页面,显式hello
  2. 英文字母表
      <p style=""font-family:黑体;font-size:36">
      <br>英文字母表:</br>
      </p>
      <p style="font-family:宋体;font-size:25;color:blue">
      <% char upperCase;
         char lowerCase;
         for(upperCase='A';upperCase<='Z';upperCase++){
            lowerCase=(char)(upperCase+32);
            out.print(upperCase+"("+lowerCase+")"+"");
            if(upperCase=='M')
              out.print("<br>");
              }
         %>
         </p>

       

        3.99乘法表

  1. <h3>乘法表</h3>
       <p style="font-family:宋体;font-size:15;color:green">
       <%
       for(int j=1;j<=9;j++){
       for(int i=1;i<=j;i++){
       int n=i*j;
       out.print(i+"*"+j+"="+n+" ");
       }
       out.print("<br>");
       }
        %>
        </p>
    

posted @ 2022-03-02 10:21  唐一南  阅读(29)  评论(0)    收藏  举报