要取得給定範圍內奇數因數的元素數量,Java 程式碼如下-
import java.io.*; import java.util.*; import java.lang.*; public class Demo{ public static int square_count(int low_range, int high_range){ return (int)Math.pow((double)high_range,0.5) - (int)Math.pow((double)low_range-1,0.5); } public static void main (String[] args){ int low_range = 55, high_range = 1000; System.out.print("The number of values with odd factors between a given range of numbers is : " + square_count(low_range, high_range)); } }
The number of values with odd factors between a given range of numbers is : 24
#名為Demo 的類別包含一個名為「square_count」的函數。該函數是透過傳遞兩個整數值作為參數來定義的。它會傳回給定範圍內具有奇數因子的元素數量。這是透過使用數學函數“pow”來完成的。在主函數中,定義了較低範圍和較高範圍值,並使用較低和較高範圍值來呼叫函數「square_count」。相關訊息顯示在控制台上。
以上是在給定範圍內,取得具有奇數因子的元素數量的Java程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!