java实验 :编程输出0~100间所有能被3或5整除的数,每行输出不多于5个数

public class Csj01 {
	public static void main(String[] args) {
		int count = 0;
		for (int i = 0; i <= 100; i++) {
			if ((i % 3 == 0) || (i % 5 == 0)) {
				System.out.print(i + " ");
				count++;
				if (count % 5 == 0) {
					System.out.println();
				}
			}
		}
	}
}

你可能感兴趣的:(java,java)