编写题解 3209: 蓝桥杯2024年第十五届省赛真题-好数(简单易懂的c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, i, x, num, sum = 0; scanf("%d", &num); f…… 题解列表 2024年12月18日 3 点赞 0 评论 326 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数 摘要: #include int main() { int n; int d = 0;; int u = 1; int c = 0;…… 题解列表 2024年12月07日 0 点赞 0 评论 181 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数 摘要:解题思路:计算从1到N之间所有“好数”的数量,并将这个数量打印出来。所谓“好数”是指那些其奇数位上的数字是奇数,偶数位上的数字是偶数的数。注意事项:确保 judge 函数的实现正确无误,特别是位数的计…… 题解列表 2024年07月21日 0 点赞 0 评论 461 浏览 评分:10.0
第15届蓝桥杯C/C++B组好数求解 摘要:解题思路:is_good_number函数检查一个数是否为好数。它从最低位开始检查,奇数位置必须是奇数,偶数位置必须是偶数。如果所有位置都满足这个条件,则返回1表示这是一个好数,否则返回0。参考代码:…… 题解列表 2024年09月22日 1 点赞 0 评论 409 浏览 评分:10.0
好数(基本思想 简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int is_good_num(int num) //判断该数是否为好数{ int position=1; …… 题解列表 2024年10月31日 7 点赞 0 评论 608 浏览 评分:10.0
好数的题解(c语言版本) 摘要:解题思路:注意事项:不要用每个数字直接带入 ,要用temp记录,不然容易死循环参考代码:#include<stdio.h>int main(){ int N = 0; int num = …… 题解列表 2024年04月30日 0 点赞 0 评论 393 浏览 评分:9.9
船新解法,结构体(c语言) 摘要:```c #include #include typedef struct { int jishuwei[10],oushuwei[10]; }link; int haoshu…… 题解列表 2024年08月12日 0 点赞 0 评论 231 浏览 评分:9.9
小白的修炼之路-进军蓝桥杯! 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int N,count=0,t1,t2,t3,n; scanf("%d",&N); for(…… 题解列表 2024年04月14日 0 点赞 0 评论 499 浏览 评分:9.0
c语言 好数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int hs(int n){ int k1,k2; int flag; while(1){ …… 题解列表 2024年09月22日 0 点赞 0 评论 250 浏览 评分:8.4
asdasdasd大水水水水水水水水水水水水 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n;long long ans = 0;void isValid(int …… 题解列表 2024年04月14日 0 点赞 0 评论 247 浏览 评分:4.7