Java 程序用于查找给定数字的立方根
以下是查找给定数字立方根的示例。
程序
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);
}
}输出
Enter a number :: 125 Cube root of the given number is 5.0
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP