Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

recursion in java

class scratch{
    public static long factorial(int n){
        if ( n == 1 ){
            return 1;
        }
        else{
            return n * factorial( n - 1 );
        }
    }
    public static void main(String[] args) {
        System.out.println( factorial(5) );
        //Print 120 (5!) to the console
    }
}
Comment

Recursion examples Java

public static void countDown(int number){
        if (number == 0) {
            System.out.println(number);
        } else {
            System.out.println(number);
            countDown(number - 1);
        }
 }
Comment

java recursion

public static long factorial(int n) { 
    if (n == 1) return 1; //base case
    return n * factorial(n-1); 
}
Comment

java recursion

// prints x number of $
public static void recursion(int x) {
  if(x == 0) { // base case
    System.out.println();
  } else { // recursive case
    System.out.print("$");
    recursion(x - 1);
  }
}
Comment

Recursion in java

public class RecursionExample2 {  
static int count=0;  
static void p(){  
count++;  
if(count<=5){  
System.out.println("hello "+count);  
p();  
}  
}  
public static void main(String[] args) {  
p();  
}  
}  
Comment

recursive in java

void f() {
    ... g() ...
}
	
void g() {
   ... f() ...
}
Comment

recursive in java

void f() {
    ... g() ...
}
	
void g() {
   ... f() ...
}
Comment

java recursive method

/*Test*/
Comment

recursion java

//recursion 

void setup() {
  size(500,500);
  background(#0F0E04);
  noLoop();
  fill(#FF5500);
  circles(width/2 , height/2, 200,1.0/3);
  
}
void circles(float x , float y, float diam, float factor){
  circle(x,y,diam);
  if (diam>=3){
    //right circles
    circles(x+.5*diam,y,factor*diam,factor);
    //left circles
    circles(x-.5*diam,y,factor*diam,factor);
    
    //top circles
    circles(x,y+.5*diam,factor*diam,factor);
    //bottom circles
    circles(x,y-.5*diam,factor*diam,factor);    
  }
}
Comment

recursion java

    public static  int exponent(int n){
        int ans;
        if(n == 0)
            return 1;
        else if(n%2 == 0){
            int k = exponent(n/2);
            ans = k*k;
        }
        ans= 2 * exponent(n-1);

        return ans ;
    }
Comment

java recursion

public void removeDigits(String string) {
  if(string.length == 1) {
    if(Character.isDigit(string.CharAt(0))) {
      return "";
    } else {
      return string;
    }
  } else {
    if(Character.isDigit(string.CharAt(0))) {
      return removeDigits(string.substring(1));
    } else {
      return string.substring(0, 1) + removeDigits(string.substring(1));

public static void main(String[] args) {
  String string = "1a2b3c"
  System.out.println(removeDigits(string)); //will print "abc"
}
Comment

PREVIOUS NEXT
Code Example
Java :: java runtime.getruntime().exec 
Java :: Java Type conversion from int to String 
Java :: java binary search tree 
Java :: enhanced for loops 
Java :: interface in java 
Java :: polymorphism vs overriding in java 
Java :: The JAVA_HOME environment variable is not defined correctly, this environment variable is needed to run this program. 
Java :: java to kotlin tutorial 
Java :: generic array creation java 
Java :: android list to string 
Java :: java constructor 
Java :: how to get stack trace of a function in java 
Java :: Java if (if-then) Statement 
Java :: lombok 
Java :: Spring boot init method 
Java :: javafx initialize 
Java :: java font bold italic 
Java :: write ajva program to vheck if anumber is less than 20 and greater than 5. It generates the exception out of range otherwise. If the number is within the range , then it displays the square of that number. 
Java :: why does the ribbon dependency crush my app 
Sql :: sql server drop temp table if exists 
Sql :: postgresql find biggest table 
Sql :: remove mysql from centos 7 
Sql :: uninstall postgresql mac 
Sql :: get column name sql server 
Sql :: sql add column 
Sql :: how to increase size of column in sql 
Sql :: get the next auto_increment value mysql 
Sql :: fetch first 10 rows in oracle sql developer 
Sql :: sql drop schema 
Sql :: mysql remove last character 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =