摘要: 一、基础知识: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://w 阅读全文
posted @ 2016-08-08 16:24 涤荡轮回 阅读(352) 评论(0) 推荐(0)
摘要: 递归 public int ganyang(int i) { int sum=0; if(i==7) { return 2; } sum = (ganyang(i+1) + 1) * 2; return sum; } public int chitao(int i) { int sum = 0; i 阅读全文
posted @ 2016-08-08 16:20 涤荡轮回 阅读(111) 评论(0) 推荐(0)