蓝桥杯历届试题-回文数字 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main { public static void main(String[] args) { …… 题解列表 2018年03月25日 0 点赞 0 评论 688 浏览 评分:0.0
Cylinder (C语言代码) 摘要:解题思路:分两种情况来写注意事项:参考代码:#include<stdio.h>#define PI 3.141592653589793238int main(){ double w,h,resu…… 题解列表 2018年03月26日 0 点赞 0 评论 817 浏览 评分:0.0
蓝桥杯基础练习VIP-芯片测试 (C++代码) 摘要:解题思路:好的比坏的多。故每列值之和大于n/2时,该列对应芯片为好的。注意事项:参考代码:#include <iostream> #include <algorithm> #include<str…… 题解列表 2018年03月26日 0 点赞 0 评论 665 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int a[10]={0},i,j; int max=a[0]; printf("pl…… 题解列表 2018年03月26日 0 点赞 0 评论 456 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)n的阶乘之和 注意变量类型问题 摘要:看了别人的方法再看自己写的方法...真是觉得好傻逼啥都不说了...继续努力刷题吧连续错了几次都是因为输出格式的问题,真是很气!以下是我的方法,复杂化了...搞了两个循环sum和a[n]都是long l…… 题解列表 2018年03月26日 2 点赞 0 评论 857 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1='C',c2='h',c3='i',c4=…… 题解列表 2018年03月26日 1 点赞 0 评论 632 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)注意倒数的类型和求法!! 摘要:参考代码如下:#include <stdio.h> int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); …… 题解列表 2018年03月26日 0 点赞 0 评论 758 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)求出水仙花数 摘要:感觉自己总是把问题复杂化...一个简单的问题总是求解的很麻烦唉 继续努力吧...参考代码如下:#include <stdio.h> int main() { int num = 10…… 题解列表 2018年03月26日 0 点赞 0 评论 1171 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int func(int year){ if(year < 5){ return year; } ret…… 题解列表 2018年03月26日 1 点赞 0 评论 1149 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float F; printf("请输入华氏温度:\n"); scanf("%f",&F); printf(…… 题解列表 2018年03月26日 1 点赞 0 评论 755 浏览 评分:0.0