Programming
Given a number n, write a programming to determine its square root if it is possible, in the contraly case print an appropriate massege on the screen.
View Answers
July 30, 2011 at 11:20 AM
<html>
<script>
function check(){
var n=document.getElementById("num").value;
if(!isNaN(n)){
alert("Entered value is integer!");
}
else{
alert("Entered value is not an integer!");
}
var num=parseInt(n);
alert("Square root of a number: "+Math.sqrt(num));
}
</script>
Enter Number<input type="text" id="num"><input type="button" value="Check" onclick="check();">
</html>
Ads
Related Tutorials/Questions & Answers:
Programming
Programming Given a number n, write a
programming to determine its square root if it is possible, in the contraly case print an appropriate massege on the screen
programming
Java Constructor
programming for single and double constructor write a program which have no argument constructor ,single parameter constructor constructor,double parameter constor,and the now when we create a object
Advertisements
Java Programming
Java Programming Hi,
What is Java
Programming? How I can learn Java
Programming in one month?
Thanks
r programming
r programming Hi,
How r
programming is playing a big role in the Big Data time?
These days companies are employing programmers with R
Programming... in the market.
Whey r
programming is so important?
Thanks
R
Ajax programming
Ajax programming Hi,
How I can start ajax
programming easily? I... concept.
What should be my starting point for Ajax
programming?
Thanks
Hi,
If you have prior
programming experience in any web development
Programming with JSP
Programming with JSP Write a program using jsp that accepts a course code as input and displays the course title
the program to which it belongs
Programming (general)
Programming (general) I haven't yet started college/university but I'm interested in studying
programming. I wondering if
programming is difficult or confusing with all the codes you have to learn? Also how many languages would
programming concept
programming concept Write a program that allows the user to input a total dollar amount for an online shopping order and computes and outputs the shipping cost based on the following schedule
Socket Programming
Socket Programming How to connect a computer through IP only and check whether it is up and running? I can't see any method in Socket
programming where I can pass only IP address as argument. I need the pass port number also
programming error
programming error I got an error when i did the following program
the prg. is to "select the name from database when the age is given for the respective name"
error i got is:SQL exception
please give me the solution by providing
C Programming
C Programming hi,how can i write a program in C
programming to place reservation in air plane from the menu let the user to inter his/her gender(W or M)and draw seats by using ascii codes and choose where he/she will sit
programming c#
programming c#
create and make use of at least one class with appropriate instance methods to solve the
programming problem.
use console-based menus to navigate between the functionality offered by the application.
at least one
Programming Assignment
Programming Assignment Hey there, We were given an assignment to write a program to read 10 student marks from the keyboard without using an Array (only using switch statements, if statements or loops). As each mark is input