题解列表

筛选

普普通通的解题方法

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

金明的预算方案

摘要:解题思路:这段代码的详细解释1.  Max  函数:这是一个用于比较两个长整型数并返回较大值的函数。2.  main  函数:定义了多个长整型数组  w (物品重量)、 v (物品价值)、 z1 、 ……

邮局选址问题

摘要:解题思路:首先读取  n  对坐标值并存入两个数组  x  和  y  中。然后对这两个数组分别进行排序,找到中间位置的坐标值  a  和  b(分别是  x  数组和  y  数组的中位数)。最后计……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int i,n,c=0;    scanf("%d",&n);    ……

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int a; long long sum = 1; scanf("%d",&a……

比较繁琐的解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int i,p=0;    char a[5][1000];    i……