题解列表
2809: 菲波那契数列
摘要:```
#include
using namespace std;
int main(){
int k,a=1,b=1,c=a+b;
cin>>k;
if (k ……
C语言思路简单,易懂!!! 理解万岁 (纯C语言) 栈的思想(@_@)!!!!
摘要:解题思路:注意事项: //下列1代表数字栈操作 2代表符号栈操作参考代码:#include <stdio.h>#include <string.h>#include <stdlib.h>……