Module: 条件演算子


Problem

11 /17


連立方程式

Problem

次の式を使用して yを計算するプログラムを作成します:

\(\begin{equation*} y(x) = \begin{cases} 0 &\text{x = 0}\\ x^2-x-1 &\ text{otherwise} \end{cases} \end{equation*}\)

入力
入力は整数 x です。

インプリント
y の値を表示します。
 
<頭> <本体>
# 入力 出力
1 2 1