package com.nnnu.struct;
public class LabelDemo{
public static void main(String[] args){
//打印101-150之间所有的质数
//质数是指在大于1的自然数中,除了1和它本身以外不再有其他因数的自然数
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+" ");
}
}
}
package com.nnnu.struct;
public class Exercise{
public static void main(String[] args){
//打印三角形 5行
for(int i = 1;i<=5;i++){
for(int j = 5;j>=i;j--){
System.out.print(' ');
}
for(int j = 1;j<=i;j++){
System.out.print('*');
}
for(int j = 1;j<i;j++){
System.out.print("*");
}
System.out.println();
}
}
}