摘要: /*两个函数实现将数字字符串转数字*/ //求 n次方 static unsigned long my_pow(int primitive ,int square){ if(square==0){ return 1; } int in=primitive; unsigned long out = p 阅读全文
posted @ 2020-11-03 19:32 HuDaXia 阅读(643) 评论(0) 推荐(0) 编辑