摘要: goto package com.zishi.struct;​public class LabelDemo { public static void main(String[] args) { //打印101-150之间的所有质数 //质数是指在大于1的所有自然数中,除了1和它本身之外不再有其他因数 阅读全文
posted @ 2021-07-21 13:51 子时未临 阅读(80) 评论(0) 推荐(0) 编辑
摘要: For循环 ```javapackage com.zishi.struct; public class ForDemo01 { public static void main(String[] args) { int a = 1; //初始化条件 while(a<=100){ System.out. 阅读全文
posted @ 2021-07-21 13:30 子时未临 阅读(32) 评论(0) 推荐(0) 编辑