恶有鳄抱 发表于 2023-11-1 17:55:34

马斯克招聘题,如何解?



这题应该如何解???

Lynn_oyl 发表于 2023-11-1 18:50:38

https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=235112&pid=6374997这是我的解答

Lynn_oyl 发表于 2023-11-1 18:51:07

https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=235112&pid=6375002这是我的代码

tomok 发表于 2023-11-1 19:46:39

看看答案 错了

恶有鳄抱 发表于 2023-11-2 10:31:17

Lynn_oyl 发表于 2023-11-1 18:51
https://fishc.com.cn/forum.php?mod=redirect&goto=findpost&ptid=235112&pid=6375002这是我的代码

{:10_275:}

人造人 发表于 2023-11-2 19:24:14

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$

yinda_peng 发表于 2023-11-2 19:41:29

题目的严谨性本来就有问题,人戴耳机戴手表怎么定义三者的运算关系?正常的想法就是相加,但是如果是面试,人家想要你就要你,想不要你就不要你,给你一个理由罢了

hornwong 发表于 2023-11-5 23:33:18

之前发过

琅琊王朝 发表于 2023-11-6 21:10:19

鸡算不如人算

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]
查看完整版本: 马斯克招聘题,如何解?