- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java Program to print Number series without using any loop
Following is the Java code to print Number srries without using any loop −
Example
public class Demo{ public static void main(String[] args){ int my_num = 0; System.out.println("The numbers without using loop have been printed below"); print_without_loop(my_num); } public static void print_without_loop(int my_num){ if(my_num <= 15){ System.out.print(my_num +","); print_without_loop(my_num + 1); } } }
Output
The numbers without using loop have been printed below 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,
A class named Demo contains the main function where a variable named ‘my_num’ is initialized to 0. A function named ‘print_without_loop’ is called. It is defined further wherein condition is checked if the number passedis greater than 15, if yes, then the number is printed beginning from 0 and incrementing it after every pass. Once the element 15 is reached, the condition exits.
Advertisements