Java程序:检查是否可以使用数组中的所有数字构成一个能被3整除的数
要检查是否可以使用数组中的所有数字构成一个能被3整除的数,Java代码如下:
示例
import java.io.*; import java.util.*; public class Demo{ public static boolean division_possible(int my_arr[], int n_val){ int rem = 0; for (int i = 0; i < n_val; i++) rem = (rem + my_arr[i]) % 3; return (rem == 0); } public static void main(String[] args){ int my_arr[] = { 66, 90, 87, 33, 123}; int n_val = 3; if (division_possible(my_arr, n_val)) System.out.println("It is possible to make a number that can be divided by 3"); else System.out.println("It is not possible to make a number that can be divided by 3"); } }
输出
It is possible to make a number that can be divided by 3
名为Demo的类包含一个名为“divide_possible”的函数。它检查是否可以使用这些数字构成一个能被3整除的数。在主函数中,定义了一个带有值的数组和一个“n”值。该函数使用特定参数调用,相关消息将显示在控制台上。
广告