Programming

(PowerShell) 로또 번호 생성

steloflute 2025. 1. 17. 01:58
1..45|get-random -count 6

정렬도 하면:

1..45|get-random -count 6|sort

 

참고: Get-Random (Microsoft.PowerShell.Utility) - PowerShell | Microsoft Learn

 

Get-Random (Microsoft.PowerShell.Utility) - PowerShell

cmdlet은 Get-Random 임의로 선택된 숫자를 가져옵니다. 개체 Get-Random컬렉션을 제출하는 경우 컬렉션에서 하나 이상의 임의로 선택된 개체를 가져옵니다. 매개 변수나 입력 Get-Random 이 없으면 명령은

learn.microsoft.com