蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct num { int f; int v; struct num* next;}n;str…… 题解列表 2023年10月13日 0 点赞 0 评论 194 浏览 评分:0.0
姜太公钓鱼 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k=0; scanf("%d",&n); int a[n-1]; for(int i=1;i<…… 题解列表 2023年10月13日 0 点赞 0 评论 271 浏览 评分:9.9
数字的处理与判断c 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g; scanf("%d",&a); { b=a/10000; …… 题解列表 2023年10月13日 0 点赞 0 评论 310 浏览 评分:9.9
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10000) printf("%d\n",5);…… 题解列表 2023年10月13日 0 点赞 0 评论 226 浏览 评分:9.9
计算星期几 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年10月13日 0 点赞 0 评论 223 浏览 评分:0.0
求小数的某一位 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年10月13日 0 点赞 0 评论 195 浏览 评分:6.0
寻找矩阵最值——C语言 摘要:解题思路:首先预定义一个最大值max,然后与每次输入的数组元素及逆行比较,如果输入的元素的绝对值大于等于max则令max等于新输入数组中的值,同时改变预定义的最大值的下标注意事项:参考代码:#incl…… 题解列表 2023年10月13日 0 点赞 0 评论 170 浏览 评分:0.0
c语言代码队列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct queue { int head; int tail; int q[100];}d;i…… 题解列表 2023年10月13日 1 点赞 0 评论 352 浏览 评分:9.9
C语言训练-"水仙花数"问题2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b,s,g,i; for(i=100;i<=999;i++) {b=i/100; g=i%10;…… 题解列表 2023年10月13日 0 点赞 0 评论 272 浏览 评分:9.9
编写题解 2846: 统计数字字符个数java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 253 浏览 评分:0.0