题目答案
混子型编程选手
努力只能及格,拼命才够优秀。
展开
-
SDUT递推题目
养兔子 #include <iostream> using namespace std; int M=1e3+10; int main() { int n; long long int f[M]; cin>>n; f[1]=1; f[2]=2; for(int i=3;i<=n;i++) { f[i]=f[i-1]+f[i-2]; } cout<<f[n]; return 0; } 母牛的故事 #include <stdio.原创 2021-02-14 16:27:54 · 304 阅读 · 0 评论 -
SDUT程序二链表题目
数据结构实验之链表一:顺序建立链表 #include <stdio.h> #include <string.h> #include <stdlib.h> struct node { int mode; struct node* pnext; }; int main() { int n,i; struct node* head; struct node* tail; struct node* p; scanf("%d.原创 2021-02-04 19:57:04 · 127 阅读 · 0 评论