A simple question 1 Answer(s) 4 years and 3 months ago
Posted in : Java Beginners
View Answers
March 23, 2009 at 2:16 AM
Hi friend,
Code to help in solving the problem :
import java.io.*; class Square { public static void main(String[] args) throws IOException { boolean boolexit=true; do {
final double smallValue = 1.0E-14 ;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter the float value "); double val = Double.parseDouble(br.readLine());
System.out.println("Do you want the (s)quare or square (r)oot of" + val); String type=br.readLine(); if(type.equals("R") || type.equals("r")) {
double N = val ;
if(N>0) { double guess = 1.00 ;
while ( Math.abs( N/(guess*guess) - 1.0 ) > smallValue ) { // calculate a new value for the guess guess = N/(2*guess) + guess/2 ;
} System.out.println("The square root of "+N+" is "+ guess); } else { System.out.println("You must have a positive number for square root."); System.out.println("Do you want the (s)quare or square (r)oot of" + val); type=br.readLine(); } } if(type.equals("S") || type.equals("s")) { double sqval=val*val; System.out.println("The number "+ val+" squared has the value "+ sqval); }
System.out.println("Do you want to enter more data? y/n: y "); String exit= br.readLine(); if(exit.equals("N") || exit.equals("n")) { boolexit=false; }
} while (boolexit);
} }
Thanks
Related Pages:
simple program question simple program question how do i get a java program to take an input from the user and have it terminate by a period and not by pressing enter
A simple question - Java Beginners
A simplequestion Design a program to calculate either the square of a number or the square root of a number and display the results.
output should be like:-
Enter a float value: 6.2
Do you want the (s)quare or square (r
Simple Question - JDBC Simple Question Respected Sir/Madam,
I am R.Ragavendran.. Can I know the following syntax is valid or not?
while(rs.next()) {
<%
<TR>
}
Because its not working for me.. It is throwing
question
question i need a simple jsp code for monthly salary calculation
question
question i need a simple jsp code for monthly salary calculation
question
question i need a simple code to display all employees on leave using jsp and mysql
question
question i need a simple javascript or jsp code to send message from one mail to another mail
question
question i need a simple javascript or jsp code to send message from one mail to another mail
question
question i need a simple jsp + mysql code for trigger after insert
question
question please give me a simple program using bean + jsp + mysql
question
question Sir,
Please help me to develop a simple search engine model in java , send me some codes
question
question Sir,
please give me a simple jsp code to upload images to a folder
question
question good afternoon sir,
please send me a simple Jsp or Java code to display a calendar with Indian public holidays,current date and time.It is very urgent,please consider and me as soon as possible
question
question i need a simple jsp + mysql code to display all absentees.and please send,if have any option to send any notification message to user who forgot to mark attendance
question
question Dear Sir,
could you please send me a simple example of java and database connectivity with java and sql
Please visit the following link:
JDBC Tutorials
Simple Java Question - Java Beginners Simple Java Question [color=#0040BF]
Dear All,
I have a huge text file with name animal.txt, I have the following sample data:
>id1
lion
>id2
horse
cat
>id3
mouse
tiger
I need to save the contents
question
question Dear Sir,
Could you please send me a simple and standard example including Java bean class , use of that bean class in JSP
 .../usingbeansinjsp.shtml
http://www.roseindia.net/jsp/simple-jsp-example/UseBean.shtml
http
Java simple question - Java Beginners
Java simple question I have to design a program for a trucking company that has 7 trucks in its fleet. Each truck is identified by a number, 1-7. Each also has a maximum weight. Assign the max weight limit to each truck
question
,jsp and simple java script.i don't know ajax
question
question simple jsp code for login and validation using jsp and simple java script
// login.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
Insert title here
JSF Simple question - Java Server Faces Questions
JSF Simple question I have h:dataTable (with 10 position)
i need write simple jsf file that represent only 5 position and on another page last 5 position .
How can i proceed from first page to second
Simple EJB3.0 - EJB Simple EJB3.0 Hi friends...
I am new user for this roseindia.net..
i am new for EJB3.0 also..
>>> my question is how to make session bean and how to access this session
question question sir plz tell me what should i give in title box. just i want java program for the question typed in this area
question question sir plz tell me what should i give in title box. just i want java program for the question typed in this area
Question Question When there is an exception in my program how java runtime system handles
Core Java Interview Question, Interview Question
Core Java Interview Question Page 9
Question: What are the uses of Serialization... the servers in a cluster.
Question: what is a collection ?
Answer
question
question dear sir/madam
my question is how to compare two text format in java..we are java beginners..so we need the complete source code for above mentioned question...we have to compare each and every word
Core Java Interview Question, Interview Question
Core Java Interview Question Page 5
Question: What are different types... } } );
Question: What are the uses of Serialization?
Answer: In some types
Jsp question - JSP-Servlet
Jsp question Hi,
I have NetBeans5.5 and Tomcat5.5 I could not able to excute a jsp file. there is giving error that the absolute path is not deployed or not found in web.xml.
Simple jsp examples without JSTL I am
question
question Dear sir
i had some typing mistake at previous question
so its my humble request to let me know the steps to start the tomcat6 under the tomcat directory
question - JSP-Interview Questions
question Need simple java questionnaires for preparation of Java Certifications JavaServer Pages (JSP) is a Java technology that allows programmers to dynamically generate HTML, XML or other types of documents
Core Java Interview Question, Interview Question
Core Java Interview Question Page 10
Question: What is the difference between notify... by a call to notify (so it is often better to use notifyAll than notify).
Question
Core Java Interview Question, Interview Question
Core Java Interview Question Page 6
Question: How can i tell what state a thread...++){ System.out.println(ts[i]); } } }
Question: What methods java providing
interview question - Servlet Interview Questions
of question on Servlet, that can be simple or complex one depend on your... according to your experience.And for collection of Java Servlet Interview Question you
question
question Gud morning sir,
I have asked u some question regarding jsp in saturaday for that i didnot find any answere in which u send me the some of the links.U have asked me the specify some details.
There is a entity name
Question? Question? My question is how to:
Add a menu bar to the program with a File menu.
In the File menu, add a submenu (JMenuItem) called About.
When the user clicks on the About menu item, display a JOptionPane message dialog
Java interview question
and simple
If you feel you must add comment, rewrite the code to be self