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: 64073
Latest: Kevinadvep
New This Month: 4166
New This Week: 132
New Today: 22
Stats
Total Posts: 73938
Total Topics: 20786
Most Online Today: 759
Most Online Ever: 4232
(January 14, 2020, 07:47:33)
Users Online
Members: 1
Guests: 656
Total: 668
Kevinadvep
Google (11)

Author Topic: Recursion Program.  (Read 4324 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

btc mixer by Kevinadvep
Today at 01:10:16

FREE fast ranks for shinobilifeonline.com by Mike MacAlister
Yesterday at 23:20:13

ошибка черного картриджа hp by Marinamog
Yesterday at 22:42:08

magenta чернила epson by Marinamog
Yesterday at 22:41:34

xerox 3020 тонер by Marinamog
Yesterday at 22:41:07

epson чернила черный 664 by Marinamog
Yesterday at 22:40:29

epson xp 3105 чернила by Marinamog
Yesterday at 22:39:41

oki купить by Marinamog
Yesterday at 22:39:15

canon g2411 чернила by Marinamog
Yesterday at 22:38:43

девелопер xerox купить by Marinaaxh
Yesterday at 22:38:02

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