robingib
Starosta
Dołączył: 02 Gru 2007
Posty: 16
Przeczytał: 0 tematów
|
Wysłany: Sob 15:58, 21 Mar 2009 Temat postu: choinka |
|
|
import java.util.*;
public class choinka1 {
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.println("wysokosc choinki");
int wysok = in.nextInt();
for(int i=0;i<wysok+1;i++)
{
for(int j=1;j<i+1;j++)
{
System.out.print("-");
}
for(int k=1;k<=wysok-i;k++)
if ((i==0)||(k==1)||(k==(wysok-i)))
System.out.print("-O");
else
System.out.print(" ");
{
System.out.println("");
}
}
}
}
|
|