The following coding in Java will input a number from the user. Let the number be 30.
import java.io.*;
class General_consc14{
public static void main(String args[])throws IOException
{
int n;
InputStreamReader isr=new InputStreamReader(System.in);
BufferedReader br=new BufferedReader(isr);
do{
System.out.println("Enter a number");
n=Integer.parseInt(br.readLine());
}while(n<=0);
for(int i=1;i<=(n-1);i++)
{
int s=0;
for(int j=i;j<=n;j++)
{
s+=j;
if(s==n)
{
for(int k=i;k<=j;k++)
{
System.out.print(k+",");
}
System.out.println();
}
}
}
} }
the output of the coding when entered number is 30:-- 4,5,6,7,8 6,7,8,9 9,10,a
find the number which in indicated by 'a' .
[ hint:-
log on to www.comprogzz.in then select "Programs on Java" option then select "General programs" option then find program number 14 and select it. u will observe the example which will give u the solution.. ]
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
By looking the code we can observe that When output sequence is increasing it prints the inner most loop...output sequence 4,5,6,7,8,6 <-when this 6 came value decrease.. so 6 is the value of changing i in the 1st loop...in this o/p sequence there is two 9 so outermost for loop i value would be 9...and we execute the code...and the ans will be 11... s=0 i=9 2nd for loop j starts with j=9 1st iteration:s=9 2nd iteration:s=19 3rd iteration:s=30 so if (s==n) condition satisfied so last for loop prints 9,10,11 ANS=>11