5 lines
55 B
PowerShell
5 lines
55 B
PowerShell
[int]$i = 1024
|
|
while ($i -gt 0) {
|
|
$i
|
|
$i /= 2
|
|
}
|