小白的修炼之路-进军蓝桥杯! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int N,count=0,t1,t2,t3,n; scanf("%d",&N); for(…… 题解列表 2024年04月14日 0 点赞 0 评论 503 浏览 评分:9.0
asdasdasd大水水水水水水水水水水水水 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n;long long ans = 0;void isValid(int …… 题解列表 2024年04月14日 0 点赞 0 评论 251 浏览 评分:4.7
好数的题解(c语言版本) 摘要:解题思路:注意事项:不要用每个数字直接带入 ,要用temp记录,不然容易死循环参考代码:#include<stdio.h>int main(){ int N = 0; int num = …… 题解列表 2024年04月30日 0 点赞 0 评论 403 浏览 评分:9.9
蓝桥杯2024年第十五届省赛真题-好数 摘要:解题思路:计算从1到N之间所有“好数”的数量,并将这个数量打印出来。所谓“好数”是指那些其奇数位上的数字是奇数,偶数位上的数字是偶数的数。注意事项:确保 judge 函数的实现正确无误,特别是位数的计…… 题解列表 2024年07月21日 0 点赞 0 评论 467 浏览 评分:10.0
暴力求解 C语言 摘要:解题思路:循环并取数判断注意事项:注意审题参考代码:#include <stdio.h> int conut(int x)//测算每次i的位数 { int a = 0; whil…… 题解列表 2024年08月07日 0 点赞 0 评论 129 浏览 评分:0.0
船新解法,结构体(c语言) 摘要:```c #include #include typedef struct { int jishuwei[10],oushuwei[10]; }link; int haoshu…… 题解列表 2024年08月12日 0 点赞 0 评论 245 浏览 评分:9.9
蓝桥杯2024年第十五届省赛真题-好数 摘要:解题思路:注意事项:参考代码:void check(int i,int flag,int* pc){ if (i > 0) { if (flag == 0 && (i % 10) % 2 == 1)…… 题解列表 2024年08月19日 0 点赞 0 评论 640 浏览 评分:0.0
第15届蓝桥杯C/C++B组好数求解 摘要:解题思路:is_good_number函数检查一个数是否为好数。它从最低位开始检查,奇数位置必须是奇数,偶数位置必须是偶数。如果所有位置都满足这个条件,则返回1表示这是一个好数,否则返回0。参考代码:…… 题解列表 2024年09月22日 1 点赞 0 评论 421 浏览 评分:10.0
蓝桥杯求好数问题 摘要:解题思路:可以用switch语句来解决此题,写一个来计算一个数的位数的函数,写一个计算好数个数的函数,在此函数中需要调用前一个函数用一个数组来保存这个数的奇偶信息,如果为1则该位为奇数,反之,则为偶。…… 题解列表 2024年09月22日 1 点赞 0 评论 138 浏览 评分:0.0
c语言 好数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int hs(int n){ int k1,k2; int flag; while(1){ …… 题解列表 2024年09月22日 0 点赞 0 评论 275 浏览 评分:8.4