题解列表

筛选

二级C语言-统计字符

摘要:解题思路:暴力注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;string s;long long yw,kg,sz,qt;int mai……

二级C语言-阶乘数列

摘要:解题思路:用计算机算出答案,再输出注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<"2.74e+32"……

纯粹手贱,不能理解,没有关系

摘要:解题思路:纯粹手贱,不能理解,没有关系注意事项:前方高能,注意避让参考代码:#include<stdio.h>int main(){ int a[10] = { 0 }; int b[10] = {0……

用筛法求之N内的素数。

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

python求结构体之成绩统计,好理解

摘要:解题思路:先把每个学生的信息装在一个列表里,外层再套一个列表装全部同学的个人信息,再把每科分数单独提出来注意事项:参考代码:n=int(input())list=[]list2=[]list3=[]l……

二级C语言-温度转换

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

二级C语言-温度转换

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