2023年7月15日
摘要: public class Demo04 { public static void main(String[] args) { //1到1000能被5整除的数,每三个一组 for(int i=1;i<=1000;i++){ if(i%5==0){ System.out.print(i+"\t"); } 阅读全文
posted @ 2023-07-15 11:03 W未央W 阅读(21) 评论(0) 推荐(0)