木_头_人
public class CaclDemo { public static void main(String[] args){ //将整型转为字符串型 String s=""; //将字符串转换为字符数组 char [] sn; //计数器,用来换行 int count=0; for(int i=3;i<1000;i=i+3)//从3开始每次加三,一定能被3整除 { s=String.valueOf(i);//将整型转为字符串型 sn=s.toCharArray(); //将字符串转换为字符数组 /** * 对字符数组中的每个字符(对应整数时的每一位的数字)进行遍历,若有5存在,输出跳出。 */ for (int j=0;j<sn.length;j++) { if ('5'==sn[j]) { System.out.print(i+" "); count++; if(10==count) { System.out.println(); count=0; } break;//找到一个5就跳出。 } } } }}