题解列表

筛选

大神老白 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int m[50]; int a,i,sum; while(scanf("%……

兰顿蚂蚁 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int a[100][100]={0};int main(){ int m,n; while(……

求组合数 (C语言代码)

摘要:解题思路:ctrl + Z 再回车 ==  EOF注意事项:参考代码:#include<stdio.h>int main(){    int m,n,i;    while(scanf("%d%d",……

WU-字符串比较 (C++代码)

摘要: 直接调用c++特性string 流来解决问题参考代码:#include<iostream> #include<cstring> using namespace std; int main()……