gpt4 book ai didi

compiler-errors - 此表达式的类型为 a*b*c 但应为 int 类型

转载 作者:行者123 更新时间:2023-12-04 06:59:26 26 4
gpt4 key购买 nike

我是 OCaml 的新手,我想编写一个函数来返回 z 以下所有 3 和 5 的倍数之和。

这是我所做的:

let rec problemone x y z = match x with
| x when x > z -> y
| x when x mod 3 = 0 && x mod 5 = 0 -> problemone(x+1,y+x,z)
| x when x mod 3 = 0 && x mod 5 <> 0 -> problemone(x+1,y+x,z)
| x when x mod 3 <> 0 && x mod 5 = 0 -> problemone(x+1,y+x,z)
;;

不幸的是,它不起作用,它告诉我:
Error: This expression has type 'a * 'b * 'c
but an expression was expected of type int

最佳答案

您正在传递单个值 (x+1, y+x, z) (这是一个 3 元组)作为 x 的值参数(并且不为 yz 传递任何值)。

您需要将其称为 problemone (x+1) (y+x) z反而。

关于compiler-errors - 此表达式的类型为 a*b*c 但应为 int 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48411474/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com