跳到内容

99 个 Elm 难题/问题 46

来自维基文库,一个开放世界的开放书籍

为逻辑运算定义函数。46.a) and’ 46.b) or’ 46.c) nand 44.d) nor’ 44.e) xor’ 44.f) impl’ 44.g) equ’(用于逻辑等价)44.h) 编写具有两个变量的给定逻辑表达式的真值表。

# # # 这是一个存根 # # #

Example in Elm:
import Html exposing (text)
import List

f : Int -> Int
-- your implementation goes here

main = text (toString (f 0))

结果

4

解决方案

华夏公益教科书