题解列表

筛选

垃圾题解,别看了

摘要:解题思路:注意事项:参考代码:n=int(input()) a=[2] b=[1] c=0 for i in range(n):     a.append(a[i]+b[i])     b……

C++版简单4位数

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int n, x; int m = 0; cin >> n; fo……

没学过C++的都可以看懂

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main() { int n; cin >> n; ……

巧用break怒干最小

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int a, b, c; cin >> a >> b >> c; ……

c++ 40多行简单版

摘要:解题思路:创建链表删除所要求数据。注意事项:此为头插法,最后用数组来重新输出参考代码:#include<iostream>using namespace std;struct Data{    int……