蓝桥杯算法提高VIP-上帝造题五分钟 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdio.h> #include <memory.h> #include <math.h> #inc…… 题解列表 2018年12月24日 0 点赞 0 评论 755 浏览 评分:8.0
蓝桥杯算法提高VIP-栅格打印问题 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1537 { public static void main(String[] …… 题解列表 2018年12月24日 0 点赞 0 评论 397 浏览 评分:0.0
最长单词 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1536 { public static void main(String[] ar…… 题解列表 2018年12月24日 0 点赞 0 评论 519 浏览 评分:4.0
C二级辅导-进制转换 (1.强制转换2.递归3.辗转相除) 摘要:#include<stdio.h> #include <string.h> #include <stdlib.h> long DecimalToOctal(long num); //2.递归 -…… 题解列表 2018年12月24日 0 点赞 1 评论 1335 浏览 评分:9.9
多输入输出练习2 (C语言代码) 摘要:解题思路:使用动态申请的数组保存数据注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #define PI 3.1415 int main…… 题解列表 2018年12月24日 1 点赞 0 评论 832 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int a[10000];int b[10000];int count;void add(int…… 题解列表 2018年12月23日 0 点赞 0 评论 756 浏览 评分:0.0
玉龙学长买雪糕 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int F(int n){ if(n>1) return F(n-1)+F(n-1)+1; else return 1…… 题解列表 2018年12月23日 0 点赞 0 评论 717 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路: 考虑行数、列数与重复度的关系注意事项: 重复度等于1时的情况特殊处理参考代码:#include <stdio.h>int main(){ int n; sc…… 题解列表 2018年12月23日 0 点赞 0 评论 441 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.10 (C语言代码) 摘要:解题思路:建立数学模型,设前一天的桃子总数为x,当天的桃子总数为m,则 x-(x/2+1)=m,化简后x=(m+1)*2,根据最后一天桃子总数为1,令x=1,再根据公式逆推。注意事项:参考代码:#in…… 题解列表 2018年12月23日 0 点赞 0 评论 485 浏览 评分:0.0
s01串 (Java代码)Get到了StringBuilder的用法 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1600 { public static String f(int n){ …… 题解列表 2018年12月23日 0 点赞 0 评论 777 浏览 评分:0.0