题解列表
1739: 成绩排序 sort+结构体 包看懂
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
// 定义结构体xs,包含三个成员变量:字符串x、整数y和整数z
stru……
二级C语言-温度转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[51];int b[51];int main(){ a[0]=-100; for(int i=0; i<51; ……
: 二级C语言-分段函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double h(double x){ if(x<0) { return fa……
1728: 字符串的查找删除 来看看吧 万一看懂了呢
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
void f(string x){
// 遍历字符串的每一个字符
……
C语言 指针解决问题
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ; int a[110]={0} ; int *p=a ; ……
迭代法求平方根 自定义函数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>double a[100];double h(double a[],double n){ int i; a[0]=n/2.0……