請(qǐng)問下面函數(shù)為什么提示錯(cuò)誤:使用了未初始化的局部變量“c”#include "stdafx.h"#includeusing namespace std;int fib(int n);int main(){int k = fib(10);cout << "k=:" << k;return 0;}int fib(int n) {int c;if (n ==1||c == 2 )c = 1;if (n > 2)c = fib(n - 1) + fib(n - 2);else0;return c;}
- 1 回答
- 0 關(guān)注
- 692 瀏覽
添加回答
舉報(bào)
0/150
提交
取消