题解列表

筛选

二维数组的转置

摘要:解题思路:当j>i时换(等号有没有都行)注意事项:参考代码:#include<stdio.h>int main(){    int i, j;    int temp;    int arr[3][3……

题解 2997: 梯形面积

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double e;    e=150*2/15*(1……

题解 2767: 计算多项式的值

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

题解 2766: 甲流疫情死亡率

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){   int a,b;   cin>>……

C语言写冶炼金属(超简便写法)

摘要:解题思路:由题目可知V为最小时向上取整,V为最大时为向下取整:当 V = 20 时,有:⌊75/20⌋ = 3,⌊ 53/20 ⌋ = 2,⌊ 59/20 ⌋ = 2,可以看到符合所有冶炼记录。当 V……

数组插入处理

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i, j, n, temp, a;    int arr[10];     int add[10]……

自定义函数并用数组解菲波那契数列

摘要:解题思路:1.定义函数2.数组注意事项:参考代码:#include <stdio.h>  int add(int n) {     // 创建一个数组用于存储菲波那契数列     int arr……