蓝桥杯算法提高VIP-Quadratic Equation 摘要:解题思路:1.公式2.大小顺序输出注意事项:参考代码:#include<iostream> #include<math.h> #include<iomanip> using namespace …… 题解列表 2022年01月13日 0 点赞 0 评论 400 浏览 评分:0.0
优质题解 蓝桥杯算法提高VIP-扫雷(JAVA题解) 摘要:解题思路:开辟空间的时候行和列都+2,将矩阵放中间,画了个简略的草图参考代码:import java.util.Scanner; public class Main { public s…… 题解列表 2022年01月13日 0 点赞 0 评论 824 浏览 评分:9.0
编写题解 1391: 震宇大神的杀毒软件(冒泡排序) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int n,temp; int a[100]; whi…… 题解列表 2022年01月13日 0 点赞 0 评论 648 浏览 评分:9.9
python常规思路解题-DNA 摘要:解题思路:注意事项:参考代码:def function(a,b): alist = [[chr(32) for i in range(a)] for j in range(a)] …… 题解列表 2022年01月13日 0 点赞 0 评论 520 浏览 评分:9.9
连续自然数和 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scan…… 题解列表 2022年01月13日 0 点赞 0 评论 517 浏览 评分:6.0
没找规律,暴力求解 摘要:#include<stdio.h> #include<math.h> #include<string.h> int main(){ long m; scanf("%ld",&m); …… 题解列表 2022年01月13日 0 点赞 0 评论 376 浏览 评分:0.0
完数的判断 摘要:解题思路:注意事项:因数和数组要在循环内初始化参考代码:#include<stdio.h>int main() { int n,i,j,t; scanf("%d",&n); for(…… 题解列表 2022年01月13日 0 点赞 0 评论 466 浏览 评分:0.0
通过c语言的指针来访问和运算 摘要:#include<stdio.h> #include<string.h> typedef struct{ int year; int month; int day; }DAY,*SD…… 题解列表 2022年01月13日 0 点赞 0 评论 324 浏览 评分:0.0
平方和与立方和(其实没有那么难) 摘要:解题思路:18:05:49注意事项:参考代码:#include<stdio.h>int main(){ int m,n; int result1,result2;//result1表示奇数的立方和,r…… 题解列表 2022年01月13日 0 点赞 0 评论 542 浏览 评分:9.9
结构体之成绩统计2 --指针 摘要:#include<stdio.h> #include<string.h> typedef struct { char sno[20]; char name[20]; int gra…… 题解列表 2022年01月13日 0 点赞 0 评论 349 浏览 评分:0.0