马斯克招聘题,如何解?
这题应该如何解??? https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=235112&pid=6374997这是我的解答 https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=235112&pid=6375002这是我的代码
看看答案 错了 Lynn_oyl 发表于 2023-11-1 18:51
https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=235112&pid=6375002这是我的代码
{:10_275:} sh-5.2$ cat main.py
#!/usr/bin/env python
#coding=utf-8
# 6a = 30
a = 30 / 6
# 2b + 2a = 20
b = (20 - 2 * a) / 2
# 4c + b = 13
c = (13 - b) / 4
# a + b * c = ?
d = a + b * c
print(d)
sh-5.2$ ./main.py
15.0
sh-5.2$
题目的严谨性本来就有问题,人戴耳机戴手表怎么定义三者的运算关系?正常的想法就是相加,但是如果是面试,人家想要你就要你,想不要你就不要你,给你一个理由罢了 之前发过 鸡算不如人算
30/3=10
10/2=5
20-10=10
10/2=5
13-5=8
8/2=4
4/2=2
10+5=15
5+15*2=35
页:
[1]