题解列表

筛选

P1027 (C语言代码)

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

众数问题 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int a[100];     int i,j,n;     int k,sum,t;     scan……

多输入输出练习1 (C++代码)

摘要:解题思路:这样写也过了。要按三次ctrl注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll;……

查找最小的k个元素 (C语言代码)

摘要:解题思路:简便快捷,注意事项:不是很严谨  经供参考参考代码:#include<stdio.h>void glc(int a[],int t,int n){//一个排序函数,给选定的位置排序 int ……