编写题解 1019: [编程入门]自由下落的距离计算 摘要:解题思路:注意事项: 减去最后反弹的高度参考代码:#include<stdio.h>int main(){ int n,i; double s=0,m,h=0; scanf("%lf %d"…… 题解列表 2021年12月05日 0 点赞 0 评论 307 浏览 评分:0.0
运行没问题 直接复制 摘要:#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdio.h>//#include <cmath>//#include <al…… 题解列表 2021年12月05日 0 点赞 0 评论 426 浏览 评分:0.0
蓝桥杯2015年第六届真题-切开字符串 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<set> using namespace std; string s1;…… 题解列表 2021年12月05日 0 点赞 0 评论 458 浏览 评分:0.0
1095: The 3n + 1 problem简单易懂,值得所有! 摘要:解题思路:注意事项:参考代码:#includeint wan(int n){int d=0; while(n!=1) { if(n%2==0){n/=2;d++;} else if(n%2!=0…… 题解列表 2021年12月05日 0 点赞 0 评论 530 浏览 评分:0.0
简单易懂,最简单代码,一起加油 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct stu{ int num; struct stu …… 题解列表 2021年12月05日 0 点赞 0 评论 466 浏览 评分:0.0
蓝桥杯2015年第六届真题-密文搜索 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<set> #include<algorithm> #include<string> using names…… 题解列表 2021年12月05日 0 点赞 0 评论 771 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:参考代码:#include <stdio.h> #include <string.h> //C语言字符串头文件,strlen() 函数包含在此内 int main() …… 题解列表 2021年12月05日 0 点赞 0 评论 424 浏览 评分:0.0
编写题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d %d %d",&a,&b,&c); if(a>b…… 题解列表 2021年12月05日 0 点赞 0 评论 391 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<algorithm> using namespace std; stri…… 题解列表 2021年12月05日 0 点赞 0 评论 584 浏览 评分:0.0
求自由下落的距离计算(小白无脑直接求的方法) 摘要:解题思路:1.求落地时反弹多高即使用一个for循环,每落地一次即除以2,注意观察题干,是落地时。2.共经过多少米,可以分开来算,第一次落地准备反弹时,经过的路程为1000m,此时M=500m,第二次落…… 题解列表 2021年12月06日 0 点赞 0 评论 785 浏览 评分:0.0