1.goto流程
Posted 小白jva
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.goto流程相关的知识,希望对你有一定的参考价值。
package com.Java.控制流程;
import java.sql.SQLOutput;
public class Demo38 {
public static void main(String[] args) {
//输出101到150的质数
int count =0;
outer:for (int i = 101; i < 150; i++) {
for (int j =2; j<i/2;j++){
if (i%j==0){
continue outer;
}
}
System.out.print(i+" ");
}
}
}
以上是关于1.goto流程的主要内容,如果未能解决你的问题,请参考以下文章