花落的新手算法(C语言代码) 摘要:解题思路:学过结构体的就可以做啦,没什么难度。注意事项:参考代码:#include<stdio.h>#define AUM(x,y) {struct student t;t=x;x=y;y=t;}s…… 题解列表 2017年12月18日 0 点赞 0 评论 990 浏览 评分:0.0
花落的新手算法(C语言代码) 摘要:解题思路:学过结构体就可以做了,没什么难度,但是要注意变量类型。注意事项:参考代码:#include<stdio.h>struct store { char MC [100]; double DJ; …… 题解列表 2017年12月18日 0 点赞 0 评论 655 浏览 评分:0.0
人民币问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i,j,k,n,count=0; scanf("%d",&n); for(i…… 题解列表 2017年12月18日 0 点赞 0 评论 565 浏览 评分:0.0
蓝桥杯算法提高VIP-乘法运算 (C++代码) 摘要:#include<iostream> #include<iomanip> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2017年12月18日 1 点赞 0 评论 783 浏览 评分:0.0
蓝桥杯历届试题-打印十字图 (Java代码) 摘要:解题思路:注意事项: 参考代码: import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2017年12月18日 1 点赞 0 评论 1351 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,temp=2,sum=0,n; scanf("%d…… 题解列表 2017年12月18日 0 点赞 0 评论 1024 浏览 评分:0.0
C二级辅导-同因查找 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i; for(i=10;i<=1000;i++) …… 题解列表 2017年12月18日 0 点赞 0 评论 676 浏览 评分:0.0
C二级辅导-计负均正 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int i,a[20],n=0,count=0; double…… 题解列表 2017年12月18日 0 点赞 0 评论 797 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include"stdio.h"#include <string.h>int main(){ int m,n,r=1,max,min,k,h,i; scan…… 题解列表 2017年12月18日 0 点赞 0 评论 841 浏览 评分:0.0
C二级辅导-统计字符 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int c, space ,number ,character , other; space = nu…… 题解列表 2017年12月18日 0 点赞 0 评论 862 浏览 评分:0.0