题解列表
题解 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……
[编程入门]结构体之时间设计-题解(Python代码)
摘要:解题思路:注意事项:参考代码:year,mouth,day=map(int,input().split())list1=[31,28,31,30,31,30,31,31,30,31,30,31]if ……
巨大的数(因为只需要求个位,那每次的乘积只保留个位就行)
摘要:参考代码:
```c
#include
int main()
{
int n;
scanf("%d",&n);
long long sum=1;//不用在意long long 这是……
自定义函数并用数组解菲波那契数列
摘要:解题思路:1.定义函数2.数组注意事项:参考代码:#include <stdio.h>
int add(int n) {
// 创建一个数组用于存储菲波那契数列
int arr……
1095: The 3n + 1 problem
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ int i=1; while(n!=1) { if(n%2==0) n=n/2; else ……