一些简单的代码
找水仙花数、找闰年,找素数、打印乘法表、计算出现过多少9;
寻找1~999之间的水仙花数
首先弄懂水仙花数的原理:水仙花数的每个位上的数字的 n 次幂之和等于它本身(例如:1^3+ 5^3+ 3^3 = 153)。
public class Test0408 {
public static void main(String[] args) {
for(int i = 1; i <= 999; i++){
if (Narcissistic(i) == i){
System.out.println(i+"是水仙花数");
}
}
//先写取出各位的立方和
}
public static int Narcissistic(int num) {
int sum = 0;
// 取个位
int ge = num % 10;
sum = ge;
// 取十位
num = num / 10;
int shi = num % 10;
// 取百位
num = num / 10;
int bai = num % 10;
sum = ge * ge * ge + shi * shi * shi + bai * bai * bai ;
return sum;
}
}
找闰年
输入开始\结束查找闰年的年份,
闰年的定义:能被4整除但不能被100整除、能被100整除且能被400整除
import java.util.Scanner;
public class Test0408 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入开始查找闰年的年份");
int start = sc.nextInt();
System.out.println("请输入结束查找闰年的年份");
int end = sc.nextInt();
for (int i = start; i <=end ;i++){
if (find(i)){
System.out.println( i+"是闰年年份");
}
}
}
public static boolean find(int year) {
if (year % 100 == 0) {
if (year % 400 == 0) {
return true;
} else {
return false;
}
} else {
if (year % 4 == 0) {
return true;
} else {
return false;
}
}
}
}
找素数
素数定义:在大于1的自然数中,除了1和它本身以外不再有其他因数。
用的是寻找反例,找到不是素数的认为false,返回是素数的
import java.util.Scanner;
public class Test0408 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入寻找素数开始位置");
int start = sc.nextInt();
System.out.println("请输入寻找素数结束位置");
int end = sc.nextInt();
for (int i = start; i <=end; i++){
if (isPrimenNumber(i)){
System.out.println(i+"是素数");
}
}
}
public static boolean isPrimenNumber(int n) {
for (int i = 2; i < n; i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
}
打印乘法表
public class Test0408 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++){
printLine(i);
}
}
public static void printLine(int number ){
for(int i = 1 ; i <=number ; i++){
System.out.printf("%d x %d = %-2d", i ,number, number * i);
}
System.out.println();
}
}
计算出现过多少9
public class Test0408 {
public static int calculateCountOfMInN(int n, int m) {
int count = 0;
do {
int digit = n % 10;
if (digit == m) {
count++;
}
n = n / 10;
} while (n != 0);
return count;
}
// 计算 1 到 n 的数列中,一共有多少个 m
// n > 0
// m 是 0 到 9
public static int calculateCountOfMInSeries(int n, int m) {
int count = 0;
for (int i = 1; i <= n; i++) {
count += calculateCountOfMInN(i, m);
}
return count;
}
public static void main(String[] args) {
System.out.println("1 到 100 的所有整数中,共出现了 " +
calculateCountOfMInSeries(100, 9) + " 个 9.");
}
}