蓝桥杯历届试题-打印十字图 (Java代码) 摘要:解题思路:注意事项: 参考代码: import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2017年12月18日 1 点赞 0 评论 1817 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:#include<iostream> #include<iomanip> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2017年12月18日 1 点赞 0 评论 1137 浏览 评分:0.0
Manchester-The 3n + 1 problem 摘要:解题思路1.输入两个整数,a,b,然后输出这两个数,每个后面都要有一个空格符;(以文件结束符结束)2.如果a>b,交换这两个数;3.判断从a到b的每一个数 i(包括a,b),(1)如果i为奇数i=i*…… 题解列表 2017年12月18日 42 点赞 3 评论 1651 浏览 评分:8.4
人民币问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i,j,k,n,count=0; scanf("%d",&n); for(i…… 题解列表 2017年12月18日 0 点赞 0 评论 783 浏览 评分:0.0
花落的新手算法(C语言代码) 摘要:解题思路:学过结构体就可以做了,没什么难度,但是要注意变量类型。注意事项:参考代码:#include<stdio.h>struct store { char MC [100]; double DJ; …… 题解列表 2017年12月18日 0 点赞 0 评论 850 浏览 评分:0.0
花落的新手算法(C语言代码) 摘要:解题思路:学过结构体的就可以做啦,没什么难度。注意事项:参考代码:#include<stdio.h>#define AUM(x,y) {struct student t;t=x;x=y;y=t;}s…… 题解列表 2017年12月18日 0 点赞 0 评论 1365 浏览 评分:0.0
WU-蓝桥杯算法提高VIP-去注释 (C++代码) 摘要:题目不是很难但 需要细心一些 cin.get()的功能是从输入流中读取走 字符 参考代码:#include<iostream> #include<cstring> using namespace …… 题解列表 2017年12月18日 2 点赞 0 评论 1779 浏览 评分:9.5
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,n,m,sum=0; char c[80]; …… 题解列表 2017年12月18日 0 点赞 0 评论 1041 浏览 评分:0.0
C二级辅导-分段函数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){ double x; scanf("%lf",&x); if(x<1) { …… 题解列表 2017年12月18日 0 点赞 0 评论 869 浏览 评分:0.0
C二级辅导-温度转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ double F,C; scanf("%lf",&F); C=(5.0/9)*(F-3…… 题解列表 2017年12月18日 0 点赞 0 评论 1253 浏览 评分:0.0