Important News

We have released Shinobi Life Online Pre-Alpha Version 1.1.0.0! This update features Earth Release: Earth Dome Jutsu, Aiming Mode and more! Try it out and tell us what you think.

User

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

Discord

Statistics

Members
Total Members: 64436
Latest: synthroid 125 pill
New This Month: 305
New This Week: 66
New Today: 16
Stats
Total Posts: 76416
Total Topics: 22035
Most Online Today: 2010
Most Online Ever: 4232
(January 14, 2020, 07:47:33)
Users Online
Members: 2
Guests: 1404
Total: 1418
Sergjzm
EdithSoure
Google (AdSense) (2)
Google (10)

Author Topic: Recursion Program.  (Read 4746 times)

0 Members and 1 Guest are viewing this topic.

Offline Kakashi Natsu

  • Chunin Poster
  • ***
  • Posts: 141
  • Reputation Power: 2
  • Kakashi Natsu has no influence.
  • Gender: Male
  • Give up trying to make me give up.
    • View Profile
  • Clan: Agni
Recursion Program.
« on: March 25, 2017, 02:56:41 »
So a friend asked me to help him with a program using Java. SO being a good friend, i did. Unknowingly i got myself into a heap of trouble... getting into recursion. Now for some of you, you may not know what recursion is in programming. Well here is an example of a factorial.
[/size]
[/size]
Code: [Select]





//will return an integer
number = 0;


Integer factorial(integer n){
if(n==0){
return number
}
number = n*factorial(n-1)




}
//lets call up this routine
factorial(3)
//this is 6 btw.



[/size]
[/size]So This is a simple version of a recursive program, where in the program itself, it calls itself up. Confusing but very helpful when it comes to path finding. For those that have a JDK and can run Java. To see the program i helped my friend with, click on the zip folder->https://jetfire3201.000webhostapp.com/ and run it in netbeans or eclipse. Main program is in Easterbunny.java.



Offline ThatsHawt

  • Academy Student Poster
  • *
  • Posts: 1
  • Reputation Power: 2
  • ThatsHawt has no influence.
  • Gender: Male
  • I'm new around here.
    • View Profile
Re: Recursion Program.
« Reply #1 on: October 01, 2017, 06:22:40 »
in your factorial method, you should return an int instead of an Integer.
Every time you run this method it creates an Integer object which is a waste of space when you can just return an int.
  • Character Name: Hawt

 

Recent Topics

Saraswati Puja 2024 by Sergjzm
Today at 04:21:56

National Bosses Day 2024 by Sergjzm
Today at 04:21:20

Rosa Parks Day 2024 by Sergjzm
Today at 04:20:49

When Is National Ex Day by Sergjzm
Today at 04:20:20

National Cupcake Day 2024 by Sergjzm
Today at 04:19:34

Pay It Forward Day 2024 by Sergjzm
Today at 04:19:05

Australia Day 2024 by Sergjzm
Today at 04:18:33

buying a research paper by EdithSoure
Today at 03:28:58

Unicorn Day 2024 by Sergppk
Today at 03:17:46

Eid Al-Fitr 2024 by Sergppk
Today at 03:17:15

Top Posters

Mars
Posts: 2648
Reminance
Posts: 2246
Shivraj
Posts: 1610
m4r1us
Posts: 1298
Manuster
Posts: 1271
NinjaMirage
Posts: 1173
Nova
Posts: 1153
taigakun
Posts: 1099
Fraudulent
Posts: 1098
Konohuro
Posts: 1060