摘要: 代码如下 要求计算最后输出的count的结果 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int count = 0; int fib(int a) { count++; if (a == 0) return 1; else if (a == 阅读全文
posted @ 2025-11-07 22:11 好想成为人类啊 阅读(28) 评论(0) 推荐(0)