2017年8月19日
摘要: <%@ page language="java" pageEncoding="UTF-8"%><div class="pro-cod" style="text-align: center; line-height: 100px;"> <div id="qrcode"></div> <input ty 阅读全文
posted @ 2017-08-19 14:51 _sen 阅读(123) 评论(0) 推荐(0)
  2017年8月1日
摘要: <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%><% String path = request.getContextPath(); String basePath = request.getScheme() + 阅读全文
posted @ 2017-08-01 20:47 _sen 阅读(245) 评论(0) 推荐(0)
  2017年7月28日
摘要: int[] num = { 1, 6, 2, 5, 7, 3 }; for (int i = 0; i < num.length - 1; i++) { for (int j = 0; j < num.length - i - 1; j++) { if (num[j] < num[j + 1]) { 阅读全文
posted @ 2017-07-28 18:55 _sen 阅读(114) 评论(0) 推荐(0)