题解列表
编写题解 2814: 正常血压
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int n,a,b,s=0,max=0; cin>>n; fo……
1075: 台球碰撞
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cmath>
using namespace std;
double l,w,x,y,r,a,v,s;
i……
统计满足条件的4位数个数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a,t=0;cin>>a;int q,b,x,g,s;……
1052 链表合并(输出是用二维数组的,链表排序不会)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct student { int a; ……
1053平均值计算(注意字符类型的变换)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int sum=0; float lev=0; for(int i=0;i<10;i++)……