how to print a numbers from 1 to 100 with out using control
structures?

Answers were Sorted based on User's Feedback



how to print a numbers from 1 to 100 with out using control structures?..

Answer / gayitri91

import java.io.*;

class Sample

{

public void printTo100(){
int[] array = new int[101];
try{
printToArrayLimit(array, 1);
}catch(ArrayIndexOutOfBoundsException e){
}
}
public void printToArrayLimit(int array[] , int index){
array[index] = array[index-1]+1;
System.out.println(array[index]);
printToArrayLimit(array, index+1);
}




public static void main(String ar[])
{
Sample s=new Sample();
s.printTo100();
}
}

Is This Answer Correct ?    13 Yes 0 No

how to print a numbers from 1 to 100 with out using control structures?..

Answer / vinodh

public class Printnos
{
static int a[]=new int[100];
static int i=1;
public static void main(String args[])
{
try
{
i=add(i);
a[i]=i;
main(args);
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println(i);

}
}
static int add(int i)
{
System.out.println(i);
return ++i;
}
}

Is This Answer Correct ?    2 Yes 0 No

how to print a numbers from 1 to 100 with out using control structures?..

Answer / friend

int i = 1;
System.out.println(i++);
System.out.println(i++);
System.out.println(i++);
System.out.println(i++);
System.out.println(i++);
....................
......................
..................
................

Is This Answer Correct ?    7 Yes 6 No

how to print a numbers from 1 to 100 with out using control structures?..

Answer / sushila

public class Arr
{
static int a[]=new int[100];
static int i=0;
public static void main(String args[])
{
try
{
i=add(i);
a[i]=i;
main(args);
}
catch(ArrayIndexOutOfBoundsException e){

}
}
static int add(int i)
{
System.out.println(++i);
return ++i;
}
}

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Core Java Interview Questions

Explain runtime exceptions?

0 Answers  


what is polymorphism with example?types of polymorphism?

15 Answers   HP, Sigma Solve,


What causes memory leaks in java?

0 Answers  


How do we make a class serialize?

3 Answers   Syntel,


What does java se mean?

0 Answers  






Can there be an abstract class with no abstract methods in it?

1 Answers  


Can we change the value of static variable?

0 Answers  


What is the difference between overriding and overloading in OOPS.

0 Answers   Axtria, ITC Indian Tobacco Company,


What does a method signature consist of?

0 Answers  


Is there any limitation of using inheritance?

0 Answers  


What is hash in java?

0 Answers  


What is executor memory?

0 Answers  


Categories