题解列表
编写题解 1141: C语言训练-百钱百鸡问题
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int i=0;i<100;i++){ f……
不好意思,直接输出了
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"95959"<<endl; return 0……
编写题解 1126: C语言训练-字符串正反连接
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; cin>>str; cout……
编写题解 1051: [编程入门]结构体之成绩统计2
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; ……
2108: 抢夺资源
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; while(scanf("%d%d",&n,&m)!=EOF) { if(n%(m+1)……
题目 1086: A+B for Input-Output Practice (II)
摘要:解题思路:注意事项:参考代码:#includeint main(){ int n,i; scanf("%d",&n); int a[n],b[n]; for(i=1;i<=n;……
蓝桥杯2018年第九届真题-小朋友崇拜圈pyhton
摘要: n = int(input())
li = list(map(int,input().split()))
dic = {}
for i in range(1,n+……
抢夺资源 经典巴什博弈
摘要:典型巴什博弈问题
**如果n=m+1,不管先手取多少,都是后手赢**
由此可以得到启发,**只要给对手留下(m+1)的倍数,就能赢**
```cpp
#include
using names……
(C++代码) 简单的字符串-题解 递归函数解法
摘要:#include<iostream>
#include<string>
#include<string.h>
using namespace std;
int Count;//记录相同的项的个……