public class Test {
//3的倍数
public static void three(int n) {
for(int i = 2; i <= n; i++) {
if(i%3 == 0
public class Test {
//3的倍数
public static void three(int n) {
for(int i = 2; i <= n; i++) {
if(i%3 == 0