题解 2789: 骑车与走路
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if ((10*a/12)>(10*a/30+……
编写题解 2789: 骑车与走路
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if((a/3.0+27+23)<(a/1.2)……
汽车与走路(非常简单版)
摘要:解题思路:咱只要比较时间,因此用分支来判断情况就欧克注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); i……
简单的思路——骑车与走路
摘要:解题思路:数学+if else-if else语句。注意事项:不要将速度弄错了!参考代码:#include<stdio.h>int main(){ int a; float t1,t2; ……