fork download
  1. class Demo{
  2. public static void main(String[] args) {
  3. // TODO Auto-generated method stub
  4. int val = 6;
  5. fnReverse(val);
  6. }
  7.  
  8. private static void fnReverse(int giValue){
  9. System.out.println(" "+giValue);
  10. if(giValue>0){
  11. giValue--;
  12. fnReverse(giValue);
  13. }
  14. //System.out.println(" "+giValue);
  15. }
  16. }
Success #stdin #stdout 0.11s 51656KB
stdin
Standard input is empty
stdout
 6
 5
 4
 3
 2
 1
 0