题解列表
answer question
摘要:解题思路:anwer the whole question is answer like usual persnaly my own opinion is to caoculate the selut……
二级C语言-自定义函数 c++
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double a[10005];double b[10005];double ans……
简单的a+b(c++代码)
摘要:解题思路:注意事项:参考代码:解法一:#include <cstdio> int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF)//也可以写成whil……
神奇的fansC++必过题解
摘要:解题思路:排序后判断注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main() { bool d=1; int c=0,i,j,……
信息学奥赛一本通T1290-采药(01背包)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int MAX = 1001;int T, M;int t[MAX], ……
编写题解 1053: 二级C语言-平均值计算(简单易懂的解题方法python)
摘要:解题思路:通过列表的广泛性解题的思路会更加宽阔。注意事项:熟练列表的使用参考代码:a=list(map(int,input().split())) //通过列表同时输入多个值,此时为列表形式
co……
1053 简单的解法
摘要:解题思路:如下注意事项:如果复制,请复制过后检查,我提交时是正确的。参考代码:#include<stdio.h>int main(){ int sum=0;//定义 int i,a[11],b=0,c……