题解 2829: 数1的个数 解题思路:可以用while拆解个各位,比较通用,但是本题说明了是10000以内的数,就用了简单拆分注意事项:注意逻辑或||造成的短路问题,使用||时只要有一个条件满足就会count++,但是这个数会不会有第二个1,并不会去做判断。为了避免代码短路, 题解列表 2025年12月07日 1 点赞 0 评论 339 浏览 评分:10.0
编写题解 1227: 日期排序 摘要:解题思路:注意事项:参考代码:dates = []while True: try: line = input().str…… 题解列表 2025年12月07日 0 点赞 0 评论 276 浏览 评分:0.0
[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[3]; int t=0;&…… 题解列表 2025年12月05日 2 点赞 0 评论 706 浏览 评分:0.0
其实很简单,慢慢想,慢慢写 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int score[100]; int A=0,…… 题解列表 2025年12月05日 1 点赞 0 评论 422 浏览 评分:10.0
孩子们,这是题解,What can i say! 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) …… 题解列表 2025年12月05日 0 点赞 0 评论 342 浏览 评分:10.0
自己写的,可供参考 摘要:解题思路:直接看吧参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n; &…… 题解列表 2025年12月05日 0 点赞 0 评论 302 浏览 评分:0.0
注意第一个数为最大数的特殊情况! 解题思路:先把最小的数和第一个数对换,再把最大的数和最后一个数对换注意事项:两个操作不要同时进行,依次进行参考代码:#includevoidinput(longlong*f){for(inti=0;i<10;i++)scanf("%lld", 题解列表 2025年12月04日 0 点赞 0 评论 467 浏览 评分:0.0
你就说对不对吧 摘要:#include<stdio.h>int main(void){ printf("153\n370\n371\n407"); &n…… 题解列表 2025年12月04日 1 点赞 0 评论 425 浏览 评分:0.0
1347: 八皇后问题 摘要:解题思路:注意事项:dfs函数中一定要写col[col_idx]=false; diag1[d1]=false;&nb…… 题解列表 2025年12月04日 0 点赞 0 评论 295 浏览 评分:0.0
3035: LETTERS最多能走过的不同字母的个数 解题思路:注意事项:dfs函数中要注意最后一定要写ch_flag[ch_idx]=false;防止回溯的时候出现错误参考代码:#include#include#includeintR, 题解列表 2025年12月04日 0 点赞 0 评论 305 浏览 评分:0.0