はじめに
このチャレンジでは、エンジニアは、製造品質管理システムにおいて、生産ラインから偶数の部品を迅速に識別して分類できる関数を作成する必要があります。この関数は整数を入力として受け取り、その数が偶数の場合は 1 を返し、奇数の場合は 0 を返すようにする必要があります。実装には、偶数性を判断するために剰余演算子 (modulo operator) を使用し、関数は異なる数値でテストする必要があります。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
c(("C")) -.-> c/BasicsGroup(["Basics"])
c(("C")) -.-> c/ControlFlowGroup(["Control Flow"])
c(("C")) -.-> c/FunctionsGroup(["Functions"])
c/BasicsGroup -.-> c/operators("Operators")
c/ControlFlowGroup -.-> c/if_else("If...Else")
c/FunctionsGroup -.-> c/math_functions("Math Functions")
subgraph Lab Skills
c/operators -.-> lab-438393{{"偶数検証関数の作成"}}
c/if_else -.-> lab-438393{{"偶数検証関数の作成"}}
c/math_functions -.-> lab-438393{{"偶数検証関数の作成"}}
end