摘要: package C; public class Wugeren { static int age(int n) { int c; if( n==1 ) c=10; else c=age(n-1)+2; return c; } public static void main(String[] args 阅读全文
posted @ 2016-06-14 08:55 刘某人丶 阅读(8554) 评论(0) 推荐(0)