[编程入门]数组插入处理 (C语言代码) 简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[9],n,i; for(i=0;i<9;i++){ scanf("%d",…… 题解列表 2021年03月13日 0 点赞 1 评论 365 浏览 评分:9.9
数字逆序输出(C语言代码) 简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i; for(i=0;i<10;i++) { scanf("…… 题解列表 2021年03月13日 0 点赞 0 评论 879 浏览 评分:9.9
单词个数统计(C语言) 摘要:解题思路:。。。。。。注意事项:。。。。。。参考代码:#include <stdio.h>#include <string.h>int main(){ char str[80]; int …… 题解列表 2021年03月13日 0 点赞 0 评论 554 浏览 评分:9.9
Python 解题思路 摘要:解题思路:先将该数开平方,然后保留整数重新开方即可注意事项:保留整数遵循四舍五入原则,如果舍去导致开方比n小,记得加上1参考代码:import mathn = int(input())b = math…… 题解列表 2021年03月13日 0 点赞 0 评论 672 浏览 评分:9.9
复数求和(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ struct LNode *next;//下一…… 题解列表 2021年03月14日 0 点赞 0 评论 572 浏览 评分:9.9
字符串比较(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int StrCmp(char *str1, char *str2){ int min =…… 题解列表 2021年03月14日 0 点赞 0 评论 1154 浏览 评分:9.9
题解 1716:快速排序 摘要: import java.util.*; public class Main { public static void main(String[] arg…… 题解列表 2021年03月14日 0 点赞 0 评论 1019 浏览 评分:9.9
用Python完成dna 摘要:解题思路:注意事项:注意格式,以及对X的赋值时机的公式参考代码:n = eval(input())while n > 0 : a,b = map(int,input().split()) …… 题解列表 2021年03月14日 0 点赞 1 评论 815 浏览 评分:9.9
数组输出(C语言) 摘要:解题思路:二维数组的循环遍历+abs()函数注意事项:。。。。。。参考代码:#include #include int main(){ int arr[3][4], max_abs = 0, r…… 题解列表 2021年03月14日 0 点赞 0 评论 720 浏览 评分:9.9
蓝桥杯算法提高VIP-Quadratic Equation题解(JAVA代码) 摘要:解题思路:一元二次方程求根公式先求出然后判断是否大于0来求方程的根注意事项:要注意对两个根的大小排序参考代码:import java.util.Scanner; public class Mai…… 题解列表 2021年03月14日 0 点赞 0 评论 532 浏览 评分:9.9