编写题解 1003: [编程入门]密码破译,扩展使用字符函数解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float M,N,sum = 0.0; scanf("%f %f",&M,&N); for(…… 题解列表 2023年07月19日 0 点赞 0 评论 99 浏览 评分:0.0
[编程入门]自由下落的距离计算-题解(C语言代码) 摘要: > 引用文本 #include #include /* run this program using the console pauser or …… 题解列表 2021年01月30日 0 点赞 0 评论 215 浏览 评分:0.0
1019简单易懂的自由下落 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float M,N,h,a,i,t; float sum; sum=0; s…… 题解列表 2022年11月07日 0 点赞 0 评论 90 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (Java代码) 摘要:解题思路:列表找找规律就可以得出公式求解注意事项:参考代码:import java.lang.*; import java.util.*; import java.io.*; import ja…… 题解列表 2018年10月13日 0 点赞 0 评论 324 浏览 评分:0.0
[编程入门]自由下落的距离计算-题解(C++代码) 摘要: #include using namespace std; int main() { float M,N; float sum=0; …… 题解列表 2019年08月03日 0 点赞 0 评论 516 浏览 评分:0.0
靠数学公式 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int M,N; scanf("%d%d",&M,&N); float h,s;…… 题解列表 2022年11月16日 0 点赞 0 评论 115 浏览 评分:0.0
弹弹弹。。C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:先求出第N次之后将要反弹的高度h,再求出第N次之后加上反弹后的总路程l,再减去还没反弹的高度h。注意事项:最后总路程l一定要减去将要反弹的高度h,因为那时还没反弹。参考代码:#include…… 题解列表 2019年02月04日 3 点赞 0 评论 479 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdlib.h>int main(){ int i; double n,H,Sum=0; scanf("%lf %…… 题解列表 2017年12月09日 0 点赞 0 评论 622 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:#include<stdio.h>int main(){ int m, n, i; float sum=1000, gao; scanf("%d %d", &m, &n); gao = m; for …… 题解列表 2017年06月14日 0 点赞 2 评论 451 浏览 评分:0.0
[编程入门]自由下落的距离计算-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> //(1000)+(500+500)+(250+250)+(125+125)+62.5+62.5int main(){ do…… 题解列表 2020年11月11日 0 点赞 0 评论 201 浏览 评分:0.0