[编程入门]链表合并 60行不到解决战斗 摘要: # **[编程入门]链表合并** #include typedef struct st { int id; int score; …… 题解列表 2023年01月13日 0 点赞 0 评论 350 浏览 评分:9.9
Minesweeper(水题) 摘要:```c #include //题目挺简单的,细心就好,唯一要注意的就是逐个输入字符要耀getchar忽略掉输入的换行。 int main(){ int n,m,i,j,k=0; ch…… 题解列表 2023年01月13日 0 点赞 0 评论 446 浏览 评分:9.9
年龄与疾病 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,s[100],j; scanf("%d",&n); double …… 题解列表 2023年01月13日 0 点赞 0 评论 561 浏览 评分:9.9
奇数求和(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i,s=0; scanf("%d%d",&m,&n); for(i=m;…… 题解列表 2023年01月13日 0 点赞 1 评论 872 浏览 评分:9.9
1月13号 寻找平面上的极大点 摘要:```c #include int main() { int n; int x[100] = { 0 }; int y[100] = { 0 }; int count = 0; int …… 题解列表 2023年01月13日 0 点赞 0 评论 483 浏览 评分:9.9
C++ 语言考试练习题_保留字母 摘要:#include<iostream>#include<algorithm>#include<iomanip>#include<cmath>using namespace std;int main(){…… 题解列表 2023年01月13日 0 点赞 0 评论 376 浏览 评分:9.9
c++解决矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { //矩阵的行数 int n = 0; ci…… 题解列表 2023年01月14日 0 点赞 0 评论 401 浏览 评分:9.9
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:x=int(input())if x>=0 and x<60: print("E")elif x>=60 and x<70: print("D")elif x…… 题解列表 2023年01月14日 1 点赞 2 评论 1655 浏览 评分:9.9
【Python题解】姜太公钓鱼 摘要:参考代码:n = int(input()) lis = list(map(int, input().split())) count = 0 for i in lis: if i <= …… 题解列表 2023年01月14日 0 点赞 0 评论 409 浏览 评分:9.9
【Python题解】程序员爬楼梯 摘要:解题思路:简单的动态规划。参考代码:n = int(input()) dp = [1 for i in range(n+1)] # 边界条件:dp[0]=dp[1]=dp[2]=1 fo…… 题解列表 2023年01月14日 0 点赞 0 评论 357 浏览 评分:9.9