骑车与走路 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if((50+(double)a/3.0)<(…… 题解列表 2023年07月13日 0 点赞 0 评论 614 浏览 评分:9.9
2789: 骑车与走路 摘要:```cpp #include using namespace std; int main() { int b,c; float a; cin>>a; …… 题解列表 2023年01月13日 0 点赞 3 评论 498 浏览 评分:9.9
三行主代码简单写法 摘要:解题思路:||,&&前者判断左侧为假(0)输出右侧,后者相反注意事项:无参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); …… 题解列表 2024年10月18日 1 点赞 0 评论 293 浏览 评分:9.9
2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:a = int(input())if a / 3 + 50 < a / 1.2: print('Bike')elif a / 3 + 50 == a…… 题解列表 2022年12月01日 0 点赞 0 评论 420 浏览 评分:9.9