新手必看,俩for解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n,i,j,h,l; scanf("%d",…… 题解列表 2024年12月16日 0 点赞 0 评论 77 浏览 评分:0.0
2139: 信息学奥赛一本通T1291-数字组合 两种方法超简单 摘要:解题思路:注意事项:参考代码:DFS#include"bits/stdc++.h" using namespace std; // 全局变量声明 …… 题解列表 2024年12月16日 0 点赞 0 评论 34 浏览 评分:0.0
成绩排序C语言答案(char name[101]!!! 100会只得50分) 摘要:注意事项:分配足够的内存空间char name[101]!!! 100会只得50分参考代码:#include <stdio.h> #include <…… 题解列表 2024年12月16日 0 点赞 0 评论 52 浏览 评分:0.0
字符菱形的c语言解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a; scanf("%c&q…… 题解列表 2024年12月16日 0 点赞 0 评论 54 浏览 评分:0.0
数据结构-链表的基本操作--C语言 摘要:解题思路:保存题解注意事项:需要确保即使初始元素数量为 0,链表仍然有一个有效的头结点。这样可以避免在后续操作中因为 L 为 NULL 而导致的问题参考代码:#include <std…… 题解列表 2024年12月16日 0 点赞 0 评论 47 浏览 评分:0.0
递归7行解决猴子吃桃 摘要:参考代码:n=eval(input())def peach(m): if m==n: return 1 &…… 题解列表 2024年12月16日 1 点赞 0 评论 138 浏览 评分:0.0
简单易懂的解 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a…… 题解列表 2024年12月16日 0 点赞 0 评论 25 浏览 评分:0.0
字符类型统计 摘要:解题思路:数组,便于想到注意事项:参考代码:#include<string.h>void fun(char a[]){ int p=0,b=0,c=0,d=0,i; int len=str…… 题解列表 2024年12月16日 0 点赞 0 评论 70 浏览 评分:0.0
3059: 开餐馆 DP DP DP DP 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int t,n,k,m[1…… 题解列表 2024年12月17日 0 点赞 0 评论 34 浏览 评分:0.0
简单易想到 摘要:解题思路:进行字符串拼接注意事项:参考代码:#include<stdio.h>#include<string.h>void fun(char*a,char*b){ char c…… 题解列表 2024年12月17日 1 点赞 0 评论 96 浏览 评分:0.0