2907: 不与最大数相同的数字之和 摘要:```cpp #include using namespace std; int main() { int N,a[100],sum=0,x=0; cin>>N; …… 题解列表 2022年11月30日 0 点赞 0 评论 374 浏览 评分:9.0
2905: 最大值和最小值的差 摘要:```cpp #include using namespace std; int main() { int M,max=-10001,min=10001,x; cin>>M…… 题解列表 2022年11月30日 0 点赞 0 评论 449 浏览 评分:9.9
2901: 查找特定的值 摘要:```cpp #include #include using namespace std; int main() { int m,n,a[10000],i=0; mems…… 题解列表 2022年11月30日 0 点赞 0 评论 313 浏览 评分:8.0
1187: 假币问题 摘要:```cpp #include #include using namespace std; int main() { int n; cin>>n; while(…… 题解列表 2022年11月30日 1 点赞 0 评论 444 浏览 评分:8.5
1186: 倒杨辉三角形 摘要:```cpp #include #include using namespace std; int dp[11][100]; int main() { int index; …… 题解列表 2022年11月30日 0 点赞 0 评论 335 浏览 评分:9.9
1185: 作业调度方案 摘要:```cpp #include using namespace std; int work[21],num[501],lasttime[21],times[21][21],need[21][21…… 题解列表 2022年11月30日 0 点赞 0 评论 345 浏览 评分:6.0
C语言 自定义函数之字符串拷贝& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define Long 2int main(){ char* c[Long]; c…… 题解列表 2022年11月30日 0 点赞 0 评论 321 浏览 评分:0.0
1184: 众数问题 摘要:```cpp #include #include using namespace std; int main() { int n,a,b=1,max=1; cin>>n;…… 题解列表 2022年11月30日 0 点赞 0 评论 451 浏览 评分:9.9
猜价模拟(二分法) 摘要:解题思路:注意事项:注意当输入换行符跳出循环,会出现时间超限,这里在输入字符‘y'时,即回答正确就跳出循环,可以规避这个错误。参考代码:#include<stdio.h>int main(){…… 题解列表 2022年11月30日 0 点赞 0 评论 223 浏览 评分:0.0
编写题解 1014: [编程入门]阶乘求和(java) 摘要:解题思路:注意事项:注意数据溢出输入20输出2561327494111820313参考代码:import java.util.Scanner;public class Main { public st…… 题解列表 2022年11月30日 0 点赞 0 评论 206 浏览 评分:0.0