题解列表

筛选

1004: [递归]母牛的故事

摘要:# include<stdio.h> int fun(int n) {     if(n<=3) return n;     else return fun(n-1)+fun(n-3); }……

字符串内排序 题解(超简单)

摘要:解题思路:不就是个字符串中的字符排个序嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;char a[1005];int m……

温度转换 题解(超级简单)

摘要:解题思路:按题目套公式来转换温度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double f;int main(){ scanf("……

母牛的故事 题解(c++简单)

摘要:解题思路:直接一个一个推算就欧了,最后输出结果。呵呵。请欣赏代码!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int a[……