1265: 青年歌手大奖赛_评委会打分 摘要: #include #include #include using namespace std; int a[105]; int main() …… 题解列表 2024年03月10日 0 点赞 0 评论 161 浏览 评分:0.0
3041: 最大子矩阵-动态规划 摘要: #include using namespace std; int num[105][105]; int p[105][105]; int main()…… 题解列表 2024年03月10日 0 点赞 0 评论 460 浏览 评分:0.0
成绩判定(数组和分支的结合) 摘要:#include <stdio.h>int main(){ int cj; scanf("%d",&cj); int x; x=cj/10-6; char…… 题解列表 2024年03月10日 0 点赞 0 评论 561 浏览 评分:0.0
WB的解题思路 摘要:#include<stdio.h>int main(){ int n; scanf("%d",&n); int count=n; int arr[n]; int …… 题解列表 2024年03月10日 0 点赞 0 评论 182 浏览 评分:0.0
转换成字符串做 摘要:解题思路:注意事项:最开始list里面的都是字符,用sort的时候记得转换成数字哈参考代码:n = int(input())list0=[]for i in range(100,1000): n…… 题解列表 2024年03月10日 0 点赞 0 评论 345 浏览 评分:0.0
苹果和虫子 摘要:#include<iostream>using namespace std;int main(){ int n,z,k; double x,y,a; cin>>n>>x>>y; a=y/x; k=0;…… 题解列表 2024年03月10日 0 点赞 0 评论 211 浏览 评分:0.0
c语言阶乘数列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double i=1; double sum=0.0; for(i=1;i<=30;i+…… 题解列表 2024年03月10日 0 点赞 0 评论 445 浏览 评分:0.0
发工资咯(python) 摘要:解题思路:注意事项:参考代码:while True: n, *salaries = list(map(int, input().split())) if n == 0: br…… 题解列表 2024年03月10日 0 点赞 0 评论 176 浏览 评分:0.0
位数问题动态规划(java) 摘要:解题思路: 代码使用了动态规划来计算N位数中包含偶数个数字3的数的个数,并将结果对12345取余注意事项:参考代码:import java.util.Scanner; public class …… 题解列表 2024年03月10日 0 点赞 0 评论 247 浏览 评分:0.0
自定义字符类型统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void tongji(char a[1000], int *letter, int *num…… 题解列表 2024年03月10日 0 点赞 0 评论 144 浏览 评分:0.0