3 lines
46 B
PowerShell
3 lines
46 B
PowerShell
|
|
$IsOdd = $N % 2 -ne 0
|
||
|
|
$IsEven = $N % 2 -eq 0
|