小白写法,代码虽然长了点,但是很容易理解 摘要:*代码里面有注释* ------------ ```cpp #include using namespace std; typedef long long ll; ll facto…… 题解列表 2023年06月15日 0 点赞 1 评论 867 浏览 评分:7.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[7][2],i,j,b[7],max,max_sign; for (i = 0; i <…… 题解列表 2023年06月15日 0 点赞 0 评论 344 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201]; gets(str); str…… 题解列表 2023年06月15日 0 点赞 0 评论 337 浏览 评分:0.0
蓝桥杯2019年第十届省赛真题-等差数列 摘要:解题思路:将n个数排序后找到他们的相邻数之间的差,然后在找公差之间的最大公约数,这个数就是公差注意事项:题目中有一个公差为0的答案所以要特判一下参考代码:#include<bits/stdc++.h>…… 题解列表 2023年06月15日 0 点赞 0 评论 454 浏览 评分:0.0
简单解法,小白做的 自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201];//注意范围 int i; …… 题解列表 2023年06月14日 0 点赞 0 评论 407 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int length=1189, width=841,i,line; …… 题解列表 2023年06月14日 0 点赞 0 评论 375 浏览 评分:0.0
三个数的排序 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;import java.util.Arrays;public class Main { public st…… 题解列表 2023年06月14日 0 点赞 0 评论 364 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>struct student{ int id; int score;};int main()…… 题解列表 2023年06月14日 0 点赞 0 评论 416 浏览 评分: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 评论 318 浏览 评分: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 评论 410 浏览 评分:0.0