Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 30th, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public class Hosyu{
  2.     public static void main(String[] args){
  3.         for (int i = 10; i > 0 ;i--){
  4.             strVar(i);
  5.         }
  6.     }
  7.  
  8.     public static void strVar(int n){
  9.         for (int m = 0; m < n; m++){
  10.             System.out.print("*");
  11.         }
  12.         System.out.println("");
  13.     }
  14. }