C语言训练-8除不尽的数 (Java代码) 摘要:解题思路:注意事项:参考代码:public class C1121 { public static void main(String[] args) { int a = 1, n1 =…… 题解列表 2018年03月16日 1 点赞 0 评论 1432 浏览 评分:5.0
C语言训练-"水仙花数"问题2 (Java代码) 摘要:解题思路:注意事项:参考代码:public class C1119 { public static void main(String[] args) { for(int i = 100; i…… 题解列表 2018年03月16日 0 点赞 0 评论 1863 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class C1119 { public static void main(String[…… 题解列表 2018年03月16日 0 点赞 0 评论 1637 浏览 评分:0.0
蓝桥杯算法提高VIP-分苹果 (Java代码) 摘要:解题思路: 第n个位置的数据 = 第n-1位置的数据 + 两者数据差注意事项:参考代码: import java.util.Scanner; public class C1501 { …… 题解列表 2018年03月16日 0 点赞 0 评论 1555 浏览 评分:0.0
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std; int main() { int num; int a[102]; cin>>num; …… 题解列表 2018年03月16日 0 点赞 0 评论 992 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;/* run this program using the console pauser o…… 题解列表 2018年03月16日 0 点赞 0 评论 1394 浏览 评分:0.0
优质题解 Manchester- 数据结构-双向循环链表 摘要:解题思路:①:定义结点,在单链表结点的基础上,多一个指向前驱的指针typedef struct Node_{ int element; struct Node_* prior; struct…… 题解列表 2018年03月15日 17 点赞 1 评论 3813 浏览 评分:9.9
人民币问题 (C语言代码) 摘要:#include <iostream> #include <cstdlib> #include <string> #include <cmath> #include <algorithm> …… 题解列表 2018年03月15日 0 点赞 0 评论 1151 浏览 评分:0.0
蓝桥杯算法提高VIP-彩票 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int jdj(int*y,int*x)…… 题解列表 2018年03月15日 2 点赞 0 评论 1236 浏览 评分:0.0
蓝桥杯算法提高VIP-特殊的质数肋骨 (C++代码) 摘要:解题思路:注意事项:参考代码:深搜(dfs):#include<bits/stdc++.h>//万能头文件 using namespace std; int n1[4]={2,3,5,7};//…… 题解列表 2018年03月15日 4 点赞 3 评论 706 浏览 评分:0.0