题解列表

筛选

1026c语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,a[100]; for(i=0;i<10;i++){ scanf("%d",&a[i]); } ……

1030c语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,j,a[100][100]; for(i=0;i<3;i++){ for(j=0;j<3;j++……

c代码记录之自定义函数字符串反转

摘要:解题思路:输入输出做在主函数,自定义函数用于逆序排列字符数组,方法是首尾字符互换注意事项:参考代码:#include<stdio.h> #include<stdlib.h> int main() ……

计算多项式的值:解题思路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    double x,a,b,c,d;    scanf("%lf %lf %……

3001:整数的和题解

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

超简单的C语言代码实现

摘要:解题思路:请看代码注意事项:无参考代码:#include<stdio.h>#include<string.h>int _asd(char a[1000]){    gets(a);    int l=……

冒泡排序c++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{     int name;     double s……

使用vector()解题.

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<vector>using namespace std;bool cmp(vector……