
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Find Cube Root of a Given Number in Java
Following is an example to find the cube root of a given number.
Program
import java.util.Scanner; public class FindingCubeRoot { public static void main(String args[]){ double i, precision = 0.000001; System.out.println("Enter a number ::"); Scanner sc = new Scanner(System.in); int num = sc.nextInt(); for(i = 1; (i*i*i) <= num; ++i); for(--i; (i*i*i) < num; i += precision); System.out.println("Cube root of the given number is "+i); } }
Output
Enter a number :: 125 Cube root of the given number is 5.0
Advertisements