Skip to content

Instantly share code, notes, and snippets.

@raahman
Last active November 9, 2015 05:00
Show Gist options
  • Save raahman/f96c0f36cd3462248d17 to your computer and use it in GitHub Desktop.
Save raahman/f96c0f36cd3462248d17 to your computer and use it in GitHub Desktop.
public class segitiga_sikuSiku{
public static void main(String[] args) {
/*Perulangan Start*/
int a,b;
for(b=0;b<=5;b++){
System.out.print("*");
for(a=b;a>=1;a--){
System.out.print("*");
}
System.out.println(" ");
}
//Perulangan End
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment