Mais um blog inútil.

Agosto 11, 2010

Arvorezinha em Windows PowerShell

Filed under: Arvorezinha,Coding,Windows — amg @ 15:17

Após colocar a ideia da arvorezinha, vi muitos ports a aparecerem aqui. No entanto não estão mesmo na RFC da "primeira", pois é pedido o numero maximo de bases da arvore (ler N e ir com um for ate N).

Hoje lembrei-me que ainda não colocaram aqui uma em Windows PowerShell, por isso aqui vai:

# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.

$str = "*"
$max = read-host "Num: "
For ($i=1;$i -le $max;$i++)
{
echo $str
$str += "*"
}

Comentar

widgeon
widgeon
widgeon
widgeon