1 public class Demo { 2 3 public static void main(String[] args) { 4 5 /* 6 * 求出1~100之間,既是3又是7的倍數的自然數出現的次數 7 */ 8 int count = 0; // 計數 9 for (... ...
1 public class Demo { 2 3 public static void main(String[] args) { 4 5 /* 6 * 求出1~100之間,既是3又是7的倍數的自然數出現的次數 7 */ 8 int count = 0; // 計數 9 for (int i = 1; i <= 100; i++) { 10 if (i % 3 == 0 && i % 7 == 0) { 11 System.out.println(i); 12 count++; 13 } 14 } 15 16 System.out.println("個數為:" + count); // 21 42 63 84 17 } 18 }