Syntaq :
/**
*
* @author mwpripanggalih
*/
public class
BukitBintang {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int i=0,j=0;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
System.out.print("*");
}
System.out.println("");
}
for(i=5;i>0;i--)
{
for(j=1;j<=i;j++)
{
System.out.print("*");
}
System.out.println("");
}
}
}
Screenshot :
EmoticonEmoticon