[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[3]; int t=0;&…… 题解列表 2025年12月05日 2 点赞 0 评论 530 浏览 评分:0.0
其实很简单,慢慢想,慢慢写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int score[100]; int A=0,…… 题解列表 2025年12月05日 1 点赞 0 评论 261 浏览 评分:10.0
孩子们,这是题解,What can i say! 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) …… 题解列表 2025年12月05日 0 点赞 0 评论 235 浏览 评分:10.0
自己写的,可供参考 摘要:解题思路:直接看吧参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n; &…… 题解列表 2025年12月05日 0 点赞 0 评论 200 浏览 评分:0.0
注意第一个数为最大数的特殊情况! 摘要:解题思路:先把最小的数和第一个数对换,再把最大的数和最后一个数对换注意事项:两个操作不要同时进行,依次进行参考代码:#include<stdio.h>void input(long lon…… 题解列表 2025年12月04日 0 点赞 0 评论 311 浏览 评分:0.0
你就说对不对吧 摘要:#include<stdio.h>int main(void){ printf("153\n370\n371\n407"); &n…… 题解列表 2025年12月04日 1 点赞 0 评论 315 浏览 评分:0.0
1347: 八皇后问题 摘要:解题思路:注意事项:dfs函数中一定要写col[col_idx]=false; diag1[d1]=false;&nb…… 题解列表 2025年12月04日 0 点赞 0 评论 181 浏览 评分:0.0
3035: LETTERS最多能走过的不同字母的个数 摘要:解题思路:注意事项:dfs函数中要注意最后一定要写ch_flag[ch_idx]=false;防止回溯的时候出现错误参考代码:#include<stdio.h>#include<st…… 题解列表 2025年12月04日 0 点赞 0 评论 191 浏览 评分:0.0
这题不难,认真看认真学 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; //n是数,a保存行,b保存列 …… 题解列表 2025年12月03日 0 点赞 0 评论 264 浏览 评分:0.0
Py2872-字符环-步骤清晰 摘要:s1,s2=input().strip().split()len1,len2=len(s1),len(s2)…… 题解列表 2025年12月03日 0 点赞 0 评论 163 浏览 评分:0.0