條件判斷與循環(huán):
-- 猴子吃桃問題
- 每天吃了一半多一個(gè)侯谁,吃了9天,第十天還有1個(gè),求一共有多少個(gè)桃子
- 主要使用知識(shí)點(diǎn):for循環(huán)
public void monkeyEat() {
int total = 0;
for (int i = 1; i <= 9; i++) {
total = (total + 1) * 2;
}
System.out.println(total);
}
-- 100元買100只雞的問題
- 公雞:5元丽旅;母雞3元;小雞:3只1元
- 主要使用知識(shí)點(diǎn):for循環(huán)和if條件判斷;方法調(diào)用與參數(shù)傳遞和返回值
public static String buyChick(int total, int totalMoney) {
String result = "";
// 公雞最多買20只
for (int i = 0; i <= 20; i++) {
// 母雞最多買33只
for (int j = 0; j <= 33; j++) {
// 得出小雞的數(shù)量
int xj = total - i - j;
if (i * 5 + j * 3 + xj / 3 == totalMoney && xj % 3 == 0) {
result += ("公雞:" + i + "母雞:" + j + "小雞:" + xj + "\n");
}
}
}
return result;
}
-- 找出1-10000之間的完美數(shù)
- 例:6=1+2+3
- 主要使用知識(shí)點(diǎn):for循環(huán)、if條件判斷棚蓄、代碼優(yōu)化
//方法一
public void perfectNum1() {
System.out.println("完美數(shù):");
for (int i = 1; i <= 10000; i++) {
int sum = 0;
for (int j = 1; j <= i - 1; j++) {
if (i % j == 0) {
sum += j;
}
}
if (sum == i) {
System.out.print(i + " ");
}
}
}
// 方法二
public void perfectNum2() {
System.out.println("完美數(shù):");
for (int i = 2; i <= 10000; i++) {
int sum = 1;
// 此處使用Math.sqrt()方法,降低循環(huán)次數(shù)
for (int j = 2; j <= Math.sqrt(i); j++) {
if (i % j == 0) {
// 先加前半段
sum += j;
if (i / j != j) {
// 此處循環(huán)是加后半段
sum += i/j;
}
}
}
if (sum == i) {
System.out.print(i + " ");
}
}
}
-- 輸入年月日得出第幾天以及輸入兩個(gè)日期,得出相差多少天
- 主要是使用知識(shí)點(diǎn):
1.for循環(huán)、if條件判斷、static靜態(tài)方法
2.方法調(diào)用多柑、獲取返回值
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("請(qǐng)輸入年月日:");
int year = sc.nextInt();
int month = sc.nextInt();
int day = sc.nextInt();
int days = getDays(year, month, day);
System.out.println(days);
sc.close();
// getDaysDifference();
}
// 根據(jù)年月日獲取當(dāng)年的多少天
public static int getDays(int year, int month, int day) {
int days = 0;
for (int i = 1; i < month; i++) {
days += daysOfMonth(year, i);
}
days += day;
return days;
}
// 根據(jù)年月日獲取兩個(gè)日期相差多少天
public static void getDaysDifference() {
Scanner sc = new Scanner(System.in);
int days1 = 0;
int days2 = 0;
for (int n = 0; n < 2; n++) {
System.out.print("請(qǐng)輸入" + (n + 1) + "次年月日:");
int year = sc.nextInt();
int month = sc.nextInt();
int day = sc.nextInt();
int days = getDays(year, month, day);
if (n == 0) {
days1 = days;
} else {
days2 = days;
}
}
System.out.printf("本年的第:%d\t本年的第:%d",days1,days2);
if (days1 > days2) {
System.out.println("兩個(gè)日期相差:" + (days1 - days2) + "天");
} else {
System.out.println("兩個(gè)日期相差:" + (days2 - days1) + "天");
}
sc.close();
}
// 年的判斷
public static boolean isLeapYear(int year) {
return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
}
// 月的判斷
public static boolean isLeapMonth(int month) {
return month <= 7 && month % 2 != 0 || (month > 7 && month % 2 == 0);
}
// 根據(jù)年和月獲取當(dāng)月天數(shù)
public static int daysOfMonth(int year, int month) {
if (month == 2) {
if (isLeapYear(year)) {
return 29;
} else {
return 28;
}
} else if (isLeapMonth(month)) {
return 31;
} else {
return 30;
}
}