/** * 求两数间的所有数字之和(递归)。 * 注:传入的参数必须保证i<j! */ public static int sum(int i,int j){ if(j>=i){ return sum(i,j-1)+j; }else{ return 0; } }