蓝桥杯2024年第十五届省赛真题-好数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int judge(int n)//设置一个判断该数是否为好数的函数{ int p=1; //p记录位数,因为从…… 题解列表 2025年03月24日 0 点赞 0 评论 78 浏览 评分:0.0
c语言好数详解 摘要:解题思路:第一位是奇数位,第二位是偶数位,第三位是奇数位....注意事项:参考代码:#include <stdio.h>int main(){ int n; int i,a; scanf(…… 题解列表 2025年03月21日 1 点赞 0 评论 132 浏览 评分:0.0
蓝桥杯2024年第十五届省赛真题-好数,c语言包一清二楚 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k=0,x;  …… 题解列表 2025年03月20日 2 点赞 0 评论 209 浏览 评分:10.0
Java简单易懂的方法 摘要:解题思路:注意事项:参考代码:importjava.util.Arrays;importjava.util.Iterator;importjava.util…… 题解列表 2025年03月06日 0 点赞 0 评论 172 浏览 评分:0.0
3209: 蓝桥杯2024年第十五届省赛真题-好数 简单易懂的方法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;//个,百,万是奇数位,十,千,十万是偶数位int ishaoshu(i…… 题解列表 2025年03月03日 5 点赞 0 评论 670 浏览 评分:0.0
3209: 蓝桥杯2024年第十五届省赛真题-好数(c语言) 摘要:解题思路:懂的都懂参考代码:#include<stdio.h>int haoshu(int i);int main(){ int n,i,num=0;…… 题解列表 2025年01月30日 6 点赞 0 评论 1322 浏览 评分:9.0
编写题解 3209: 蓝桥杯2024年第十五届省赛真题-好数(简单易懂的c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, i, x, num, sum = 0; scanf("%d", &num); f…… 题解列表 2024年12月18日 17 点赞 0 评论 1320 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数 摘要: #include int main() { int n; int d = 0;; int u = 1; int c = 0;…… 题解列表 2024年12月07日 1 点赞 0 评论 541 浏览 评分:10.0
蓝桥杯2024年第十五届省赛真题-好数 暴力 摘要:解题思路:注意事项:参考代码:#include"iostream"using namespace std;int main(){ int n; int s=0; int x=1; cin>>n; fo…… 题解列表 2024年11月27日 1 点赞 0 评论 680 浏览 评分:0.0
暴力枚举 #3209: 蓝桥杯2024年第十五届省赛真题-好数 摘要:``` #define _CRT_SECURE_NO_WARNINGS 1 #include #include #include #include #include #include …… 题解列表 2024年11月25日 3 点赞 0 评论 473 浏览 评分:8.0