蓝桥杯2019年第十届省赛真题-等差数列 摘要:解题思路:将n个数排序后找到他们的相邻数之间的差,然后在找公差之间的最大公约数,这个数就是公差注意事项:题目中有一个公差为0的答案所以要特判一下参考代码:#include<bits/stdc++.h>…… 题解列表 2023年06月15日 0 点赞 0 评论 175 浏览 评分:0.0
简单解法,小白做的 自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201];//注意范围 int i; …… 题解列表 2023年06月14日 0 点赞 0 评论 227 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int length=1189, width=841,i,line; …… 题解列表 2023年06月14日 0 点赞 0 评论 220 浏览 评分:0.0
三个数的排序 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;import java.util.Arrays;public class Main { public st…… 题解列表 2023年06月14日 0 点赞 0 评论 184 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>struct student{ int id; int score;};int main()…… 题解列表 2023年06月14日 0 点赞 0 评论 227 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m, i, j, k,a[100][100]; scanf("%d %d", &n, …… 题解列表 2023年06月14日 0 点赞 0 评论 217 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int m,n,a[100]={0}, * b,i,j,flag,su…… 题解列表 2023年06月13日 0 点赞 0 评论 240 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct patient{ char name[9]; float temperat…… 题解列表 2023年06月13日 0 点赞 0 评论 342 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num; float consume = 0; scanf("%d", &n); …… 题解列表 2023年06月13日 0 点赞 0 评论 397 浏览 评分:9.9
明明的随机数 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String [] args){ …… 题解列表 2023年06月13日 0 点赞 0 评论 224 浏览 评分:0.0