2020年11月14日
摘要: public static void factorial(int n) { //传入阶乘的数字n //创建保存结果的数组array int[] array=new int[100]; array[0]=1; //位数bit int bit=1; //进位carry int carry=0; for( 阅读全文
posted @ 2020-11-14 16:13 BestCoding 阅读(361) 评论(0) 推荐(0) 编辑