Given: (x-2)(x+3)= 100;
solve the equation for x using any programing language.
Answer Posted / sravan
public class Test {
static int x;
public static void find()
{
for(x=0;x<104;x++)
{
if((x-2)*(x+3)==104)
{
System.out.println(x);
}
}
}
public static void main(String[] args) {
find();
}
}
Answer: 10
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is easiest way to get the PL/i compiler,I didn't have found the compiler in my library. Is there any extra cost if we want to access the PL/1 programs?Actually we r having Mainframe rented training Ids
How will you prove that java swing is multithreaded?
can we allocate memory for interface? if no then why?
hi, all this is shoba m.c.a . i have learned abap but no oppurtunities right now as fresher , right now i want to learn any course on demand any one pls suggest me good course and institute in hyderabad
What is ur porject Architecture? If anyone ask what i have to specify here..
what is d main diff between the java and .net framework
how to work search engine? plz detail answer me.
Is anyone has done the ASP.NET MVC4 workshop course(2 days) from Peers Technologies. Let me know. I need to talk before joining ASP.NET MVC4 training at peers, Hyderabad.
Hi All, Can any one please send me the difference between informatica 7i and 8i versions, Thanks in advance. vinod
how to get second highest salary from a employee table and how get a 5th highest salary from a employee table by using proc sql?
can any one suggestion me present which course(except java,.net) has huge demand in the market?
ok how would i do the following extract from a file i have ssns = 267907230 which are in column 7 into a separate data set then create a 2nd job step to extract from the data set created the following "fund code" which is in column 31 and is 113 into yet another data set
Find out the roles which gives access to all tables in SAP? Thanks in advance.
what is difference between kpo and it industry? that is in terms of work, package etc
Write a program to find factorial of a number using functions