Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

how to display same statement multiple times in java

public void recursiveMe(int n) {
    if(n <= 5) {// 5 is the max limit
        System.out.print("_");//print n
        recursiveMe(n+1);//call recursiveMe with n=n+1
    }
}
recursiveMe(1); // call the function with 1.
Comment

PREVIOUS NEXT
Code Example
Java :: sorted hashmap java 
Java :: string.equals 
Java :: how to generate and save image of layout in android 
Java :: android capture view and animation 
Java :: Cloudinary image Transformation in Java 
Java :: Changing or Replacing Elements in java map 
Java :: java lambda expressions qunado foi implantada 
Java :: Get Max Value Element From List With Objects 
Java :: android studio bring keyboard up 
Java :: sha 1 key throguh java is not working 
Java :: java run multiple cmd commands 
Java :: Error: Unable to export or encrypt the private key java.lang.NullPointerException 
Java :: The JCheckBox and JComboBox classes belong to which package? 
Java :: manifest merger 
Java :: start with < and end with < in Java 
Java :: android studio see what activity you came from 
Java :: android edittext with icon 
Java :: data input stream using while loop 
Java :: The Unit Circle Codehs 
Java :: if en une seul ligne java 
Java :: how to check if rs next is null 
Java :: android set socket timeout 
Java :: Removing DOM nodes when traversing a NodeList 
Java :: jsp form upload image 
Java :: test function that call a function javascrip 
Java :: java combine to byte[] 
Java :: how to set slected row color in javafx tableview 
Java :: txt not chnage on fragment 
Java :: set countdown timer to play audio file android studio 
Java :: This version of the Android Support plugin for IntelliJ IDEA (or Android Studio) cannot open this project, please retry with version 2020.3.1 or newer. 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =