java编程及答案
发布时间: 2025-08-06 18:32:47
A. 求1至100之间的合数之和JAVA编程题
public class Test{
public static void main(String []args){
int cn = 0;
for(int i=1;i<=100;i++){
i=i%10;
cn = cn+i;
}
System.out.println("个位上数之和 "+cnt);
}
}
B. Java编程题:计算数字12和18的最小公倍数。求答案。
下面给出了一个计算两个整数的最大公约数和最小公倍数的通用的方法:
首先先计算最大的公约数,最小公倍数=两个数的乘积再除以它们的最大公约数。
public class Test2 {
public static void main(String[] args) {
System.out.println(lcm(12, 18));
}
/**
* 计算整数a和b的最大公约数
*/
public static int gcd(int a, int b) {
while(b!=0) {
int tmp = b;
b = a%b;
a = tmp;
}
return a;
}
/**
* 计算整数a和b的最小公倍数
*/
public static int lcm(int a, int b) {
int t = gcd(a,b);
if(t==0) return 0;
else
return a * b / t;
}
}
热点内容