编写题解 2789: 骑车与走路python 摘要:参考代码:n = int(input()) if n/3+50 == n/1.2: print("All") if n/3+50 > n/1.2: print("Walk") …… 题解列表 2024年03月06日 0 点赞 0 评论 390 浏览 评分:0.0
骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; double s1,s2; scanf("%d",&n); s1=…… 题解列表 2023年01月14日 0 点赞 0 评论 186 浏览 评分:0.0
新手 骑车与走路 摘要:解题思路:分别列出走路和骑车的时间表达式;比较大小,小则快,大则慢注意事项:参考代码#include<stdio.h>int main(){ double t1,t2,x; scanf("…… 题解列表 2024年12月07日 1 点赞 0 评论 226 浏览 评分:0.0
2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){int&…… 题解列表 2025年03月17日 0 点赞 0 评论 137 浏览 评分:0.0