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
how we can know the funcions available in a class recording java?
hi this is uday i want prepare for nic exam if any one have previous question papers please send me or atlest guide me how to prepare my ID is udaykiran4u@in.com
what is adodb??y it is used for connection of V.B and access??what is ado?dao?
what is the current salary package in India for a lamp programmer
can any one suggestion me present which course(except java,.net) has huge demand in the market?
Iam using Microsoft Visual Studio to create a system for mobile store I want to know how to calculate mobile price that the customer buy and how to reduce quantity from the data base that we have for mobile .And also how to calculate revnue for each mobile and revnue for the total mobile
What is the first message line that any language learning prints on the screen? and why?
what is web service in java? have u use before.
Write a program to find duplicate number from array in minimum time complexity.
Outline the two important features of a terminating recursion. Any ideas?
Given an array of size n, containing every element from 1 to n+1, except one. Find the missing element.
what is the work of 1tier,2tier,&ntier? Plz Explain it!
In OB52 , How to define two open posting period, Like only 5 and 8 posting should be open.. should not open 6 and 7..period..
When we use Windows authentication mode
can we allocate memory for interface? if no then why?