restructuration of the files

This commit is contained in:
2026-01-04 09:24:33 +01:00
parent 243f41f173
commit 0ac9fb2303
9 changed files with 17 additions and 2 deletions

10
1.Basic/4.IfElse.ps1 Normal file
View File

@@ -0,0 +1,10 @@
$PokemeonNum = 25
If($PokemeonNum -ge 1 -and $PokemeonNum -le 151){
Write-Host "Your Pokemon is from Kanto!"
} Elseif($PokemeonNum -ge 152 -and $PokemeonNum -le 251){
Write-Host "Your Pokemon is from Johto!"
}Elseif($PokemeonNum -ge 252 -and $PokemeonNum -le 386){
Write-Host "Your Pokemon is from Hoenn!"
}