嵌套循环和非嵌套循环
有一个四位数字满足 千位数字+百位数字=十位数字 的特征求出此特征的数字
落日4
浏览 1112回答 2
2回答
-
望远
public class HelloWorld {
public static void main(String[] args) {
for(int i=1000,count=0;i<10000;i++)
{
String string=new Integer(i).toString();
String []str=string.split("");
int []arr=new int[str.length];
for(int j=0;j<str.length;j++)
{
arr[j]=Integer.parseInt(str[j]);
}
if(arr[0]+arr[1]==arr[2])
{
System.out.print(string+" ");
count++;
if(count%10==0){
System.out.println();
}
}
}
}
}
打开App,查看更多内容