C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c",&c1); scanf("%c",&c2); s…… 题解列表 2018年11月02日 0 点赞 0 评论 746 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int k; double m,p,q,s,r,t; int i=1; //printf("请输入当月利润…… 题解列表 2018年10月26日 0 点赞 0 评论 759 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (Java代码) 摘要:解题思路:注意事项:参考代码import java.util.Scanner;public class Main { public static void main(String[] args) { …… 题解列表 2018年10月26日 0 点赞 0 评论 577 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (Java代码) 摘要:解题思路:注意事项:参考代码import java.util.Scanner;public class Main { public static void main(String[] args) { …… 题解列表 2018年10月26日 1 点赞 0 评论 1047 浏览 评分:0.0
数列有序 (C语言代码) 摘要:解题思路: 根据m去数组中查找到相应位置k,然后把k-(n-1)的数据往后移动一个位置,最后再把m放到a[k]中即可。参考代码:#include <stdio.h> #define N 105 i…… 题解列表 2018年10月26日 2 点赞 0 评论 1192 浏览 评分:0.0
字符逆序 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String []args) …… 题解列表 2018年10月26日 0 点赞 0 评论 857 浏览 评分:0.0
DNA (C语言代码) 摘要:#include "stdafx.h"int main(){ int i,j,k,l,n, a[15], b[15]; scanf("%d", &n); for (i = 0;…… 题解列表 2018年10月26日 0 点赞 0 评论 714 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (Java代码) 摘要:解题思路:注意事项:参考代码import java.util.Scanner;public class Main { public static void main(String []args) {…… 题解列表 2018年10月26日 0 点赞 0 评论 637 浏览 评分:0.0
数列排序 (C语言代码) 摘要:解题思路: 使用stl的list很简单就可以实现。list可以实现链头插入,也可以实现链尾插入。注意事项:参考代码:#include <bits/stdc++.h> using namespace …… 题解列表 2018年10月26日 1 点赞 0 评论 1082 浏览 评分:0.0
IP判断 (C语言代码) 摘要:#include "stdio.h"#include "string.h"int ex(int len,char a[]){ int i,s=0,t=1; for (i = len-1; i >=0;…… 题解列表 2018年10月26日 0 点赞 0 评论 1215 浏览 评分:0.0