摘要: /** * Created by wangbin on 2022/1/11. */ #include <stdio.h> #include <time.h> int fib(int n) { if (n <= 0) { return 0; } else if (n == 1) { return 1; 阅读全文
posted @ 2022-01-11 11:25 Mars.wang 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/daheiantian/article/details/6233058 https://blog.csdn.net/qq_35433716/article/details/87464502 之前一直以为C语言是面向过程的语言,没办法使用面向对象,后 阅读全文
posted @ 2022-01-11 10:36 Mars.wang 阅读(721) 评论(0) 推荐(0) 编辑