Fork me on GitHub
摘要: public class Solution { public static void main(String[] args) { System.out.println(qpow(5,6)); } public static int qpow(int x,int n) { int res =1; wh 阅读全文
posted @ 2020-09-02 10:26 努力不会错哦 阅读(88) 评论(0) 推荐(0)
摘要: 1. u_char是无符号的char型 而char是有符号的char型,u_char和char都占一个字节,8个bit位! 2. 回调函数:https://blog.csdn.net/angciyu/article/details/80794273 阅读全文
posted @ 2019-12-03 11:23 努力不会错哦 阅读(60) 评论(0) 推荐(0)