SlideShare a Scribd company logo
public class Recursion
{
public static void main(String[] args)
{
int c=4;
test(c);
}
public static int test(int i)
{
if(i >=1)
{
test(i-1); Fun1
test(i-1); Fun2
System.out.println( i);
}
return 0;
}
} done
done
done
done
4
3
2
1
1
2
1
1
3
2
1
2
1
1
1
done
done
done

More Related Content

PPTX
Compiler Optimization Presentation
PDF
Algorithms
PPT
code optimization 1...code optimization-1221849738688969-9
PDF
Digital Signals and System (April – 2017) [75:25 Pattern | Question Paper]
PDF
Collaborative Software Development
PPTX
Object Oriented Programming - Value Types & Reference Types
PPT
14 recursion
Compiler Optimization Presentation
Algorithms
code optimization 1...code optimization-1221849738688969-9
Digital Signals and System (April – 2017) [75:25 Pattern | Question Paper]
Collaborative Software Development
Object Oriented Programming - Value Types & Reference Types
14 recursion

Recently uploaded (20)

PDF
FORM 1 BIOLOGY MIND MAPS and their schemes
PPTX
Introduction to pro and eukaryotes and differences.pptx
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PPTX
History, Philosophy and sociology of education (1).pptx
PPTX
Introduction to Building Materials
PDF
My India Quiz Book_20210205121199924.pdf
PDF
LDMMIA Reiki Yoga Finals Review Spring Summer
PDF
advance database management system book.pdf
PPTX
Share_Module_2_Power_conflict_and_negotiation.pptx
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
PPTX
20th Century Theater, Methods, History.pptx
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PDF
IGGE1 Understanding the Self1234567891011
PPTX
Computer Architecture Input Output Memory.pptx
PDF
Indian roads congress 037 - 2012 Flexible pavement
PDF
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
DOC
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
FORM 1 BIOLOGY MIND MAPS and their schemes
Introduction to pro and eukaryotes and differences.pptx
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
History, Philosophy and sociology of education (1).pptx
Introduction to Building Materials
My India Quiz Book_20210205121199924.pdf
LDMMIA Reiki Yoga Finals Review Spring Summer
advance database management system book.pdf
Share_Module_2_Power_conflict_and_negotiation.pptx
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
20th Century Theater, Methods, History.pptx
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
IGGE1 Understanding the Self1234567891011
Computer Architecture Input Output Memory.pptx
Indian roads congress 037 - 2012 Flexible pavement
Τίμαιος είναι φιλοσοφικός διάλογος του Πλάτωνα
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
Soft-furnishing-By-Architect-A.F.M.Mohiuddin-Akhand.doc
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Ad
Ad

Recursion by m.habib

  • 1. public class Recursion { public static void main(String[] args) { int c=4; test(c); } public static int test(int i) { if(i >=1) { test(i-1); Fun1 test(i-1); Fun2 System.out.println( i); } return 0; } } done done done done 4 3 2 1 1 2 1 1 3 2 1 2 1 1 1 done done done