摘要: <%out.print("<table border='1' align='center'>");out.print("<tr>");for (int t=100;t<=999;t++){ int a=t/100,b=(t%100)/10,c=(t%100)%10; if (t==a*a*a+b*b 阅读全文
posted @ 2018-06-08 10:34 吴小帅 阅读(319) 评论(0) 推荐(0) 编辑
摘要: <% String k = request.getParameter("k"); int tt = Integer.parseInt(k); out.println(tt+"<br><br><br>"); while(tt>0){ out.print(tt%10); tt= tt/10; } %> 阅读全文
posted @ 2018-06-08 08:26 吴小帅 阅读(339) 评论(0) 推荐(0) 编辑