摘要: 1 #include <stdio.h> 2 #include <string.h> 3 4 typedef long long int lli; 5 6 lli power_digui(lli m, lli n) // 递归版 7 { 8 if (n == 0) // 任何数的0次方为1 9 re 阅读全文
posted @ 2020-02-27 11:30 sqdtss 阅读(860) 评论(0) 推荐(0) 编辑