最简单易懂的解法{1019}
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double M,N,h=0,H=0; scanf("%lf%lf",&M,&N); for……
高中不会的题现在终于解决了!!
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i; float a,b,m,n; scanf("%f……
1019: [编程入门]自由下落的距离计算(简单的解法)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; double n,m,k=0,num=0; scanf("%lf %lf",&m……
[编程入门]自由下落的距离计算
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float i,M,N,c,d; scanf("%f %f",&M,&N); for(i=1;……
萌新C语言:咋还是for
摘要:#include<stdio.h>int main(){ int m,n; double h=0.0,s=0.0; scanf("%d %d",&m,&n); h=m; for(int i=1;i<=……
自由下落的距离计算C语言
摘要:参考代码:#include <stdio.h>
int main()
{
int M,N,i;
double h,m;
h=0,m=0;
scanf("%d %d",&M,&N);……
1019运用递归的思想,简直easy。
摘要:解题思路:运用递归的思想,简直easy。注意事项:参考代码:#include<stdio.h>double luodi(double m ,double n){ if(n==1) return……