Skip to content

Instantly share code, notes, and snippets.

@editnuki
Created May 7, 2012 12:45
Show Gist options
  • Save editnuki/2627563 to your computer and use it in GitHub Desktop.
Save editnuki/2627563 to your computer and use it in GitHub Desktop.
Graph.java
public class Hosyu{
public static void main(String[] args){
for (int i = 10; i > 0 ;i--){
strVar(i);
}
}
public static void strVar(int n){
for (int m = 0; m < n; m++){
System.out.print("*");
}
System.out.println("");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment