摘要: #include <stdio.h> #include <math.h> int main(){ double a,n; scanf("%lf %lf",&a,&n); printf("%lf",pow(a,n)); return 0; } 在编译语句的最后面加上 -lm,问题即可解决: gcc 文 阅读全文
posted @ 2021-09-13 21:46 qingjiawen 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-09-13 21:40 qingjiawen 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 错误描述: The process cannot access the file because it is being used by another process 解决:将读取文件的方式改成 var stream = new FileStream(fullPath, FileMode.Open 阅读全文
posted @ 2021-09-13 14:13 qingjiawen 阅读(1903) 评论(0) 推荐(0) 编辑