fork download
  1.  
  2. class Ideone
  3. {
  4. public static void main (String[] args) throws java.lang.Exception
  5. {
  6. int i,j;
  7. for(i=10;i>0;i--){
  8. for(j=1;j<=i;j++){
  9. System.out.print("#");
  10. } System.out.println();
  11. } // your code goes here
  12. }
  13. }
Success #stdin #stdout 0.12s 52544KB
stdin
Standard input is empty
stdout
##########
#########
########
#######
######
#####
####
###
##
#