C语言训练-谁家孩子跑最慢* (C++代码) 摘要:解题思路: 暴力求解注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ co…… 题解列表 2019年04月24日 0 点赞 0 评论 391 浏览 评分:2.0
C语言训练-谁家孩子跑最慢* (C语言代码) 摘要:解题思路:暴力解决了?!注意事项:参考代码:#include<stdio.h>int main(){ printf("W"); return 0;}…… 题解列表 2018年01月10日 1 点赞 0 评论 879 浏览 评分:2.0
C语言训练-谁家孩子跑最慢这就AC了?? 摘要:解题思路:。。。注意事项:参考代码:#include<stdio.h>int main(){printf("W");}…… 题解列表 2017年12月13日 2 点赞 3 评论 769 浏览 评分:4.3
C语言训练-谁家孩子跑最慢* (C语言代码) 摘要:解题思路: 数学分析题;每家15分,且3个得分不连续注意事项:参考代码:#include<stdio.h> int main() { printf("W\n"); return 0; …… 题解列表 2018年02月12日 1 点赞 0 评论 862 浏览 评分:4.7
C语言训练-谁家孩子跑最慢* (C++代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <cstdlib> #include <iostream> #include <cmath> #inclu…… 题解列表 2018年11月11日 2 点赞 0 评论 621 浏览 评分:5.3
吾乃元始天尊!1153: C语言训练-谁家孩子跑最慢* 摘要:##1153: C语言训练-谁家孩子跑最慢* ####总结:像这种不给输入直接输出答案的,基本上就直接输出答案就行了,这里就不多解释了:tw-1f34d: ```c #include int …… 题解列表 2022年12月26日 0 点赞 0 评论 197 浏览 评分:6.0
1153: C语言训练-谁家孩子跑最慢* 摘要:方法一: ```cpp #include #include using namespace std; int main() { int s[7]={1,2,3,4,5,6,7};…… 题解列表 2022年10月23日 0 点赞 0 评论 249 浏览 评分:6.0
C语言训练-谁家孩子跑最慢* -题解(C语言代码) 摘要:解题思路:用L1、L2表示李家剩下的两个孩子, 用W1、W2表示李家剩下的两个孩子。定义:L1>L2,W1>W2.由题意知:(1)L1+L2=6,W1+W2=7;(2)L1-L2!=1,W1-W2!=…… 题解列表 2020年07月20日 0 点赞 0 评论 479 浏览 评分:6.0
C语言训练-谁家孩子跑最慢* (C语言代码) 摘要:解题思路: 按题目的条件,共有1+2+3+...+9=45分,每家的孩子的得分应为15分。根据题意可知:获第一名的是李家的孩子,获第二名的是王家的孩子,则可推出:获第三名的一定是张家的孩子。由每家孩子…… 题解列表 2017年08月12日 7 点赞 3 评论 1638 浏览 评分:6.0