C语言训练-谁家孩子跑最慢* (C语言代码) 摘要:解题思路:看得懂算我输,自己都把自己写蒙b了注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[3][3],i,j,k; a[0]…… 题解列表 2019年04月13日 0 点赞 0 评论 447 浏览 评分:8.0
谁家孩子跑最慢*(数学很好做,直接输出结果) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<'W'; return 0;}…… 题解列表 2022年10月28日 0 点赞 2 评论 185 浏览 评分:7.3
代码不长,for比较多,新手易懂 摘要:解题思路:将名次等价于分数,每家15分,9、8已经固定,7个数分为2、2、3组然后遍历注意事项:如下参考代码:#include<iostream>using namespace std; int…… 题解列表 2022年04月03日 0 点赞 0 评论 430 浏览 评分:7.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 评论 346 浏览 评分:6.0
C语言训练-谁家孩子跑最慢* (C语言代码) 摘要:解题思路: 按题目的条件,共有1+2+3+...+9=45分,每家的孩子的得分应为15分。根据题意可知:获第一名的是李家的孩子,获第二名的是王家的孩子,则可推出:获第三名的一定是张家的孩子。由每家孩子…… 题解列表 2017年08月12日 7 点赞 3 评论 1594 浏览 评分:6.0
C语言训练-谁家孩子跑最慢* -题解(C语言代码) 摘要:解题思路:没思路,瞎尝试,寻求捷径注意事项:大家不要学我哦参考代码:#include<stdio.h>int main(){ printf("W");}…… 题解列表 2020年12月10日 0 点赞 0 评论 257 浏览 评分:6.0
吾乃元始天尊!1153: C语言训练-谁家孩子跑最慢* 摘要:##1153: C语言训练-谁家孩子跑最慢* ####总结:像这种不给输入直接输出答案的,基本上就直接输出答案就行了,这里就不多解释了:tw-1f34d: ```c #include int …… 题解列表 2022年12月26日 0 点赞 0 评论 123 浏览 评分: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 评论 201 浏览 评分:6.0
C语言训练-谁家孩子跑最慢* (C++代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <cstdlib> #include <iostream> #include <cmath> #inclu…… 题解列表 2018年11月11日 2 点赞 0 评论 575 浏览 评分:5.3
C语言训练-谁家孩子跑最慢* (C语言代码) 摘要:解题思路: 数学分析题;每家15分,且3个得分不连续注意事项:参考代码:#include<stdio.h> int main() { printf("W\n"); return 0; …… 题解列表 2018年02月12日 1 点赞 0 评论 790 浏览 评分:4.7