java作业,求解答

 我来答
雪飞潇潇
2016-01-11 · TA获得超过6273个赞
知道大有可为答主
回答量:1968
采纳率:91%
帮助的人:853万
展开全部

参考代码


public class NumArray {
 public static void main(String[] args) {
  int len = 1000;// 数组的长度
  int[] ary = new int[len];// 申明数组
  for (int i = 0; i < ary.length; i++) {
   ary[i] = i + 1;// 数组元素赋值
  }
  int index = 0;// 此变量用于换行输出
  for (int i = 0; i < ary.length; i++) {
   if (ary[i] % 17 == 0) {// %取余数, 如果余数等于0,那么说明可以被整除
    System.out.print(ary[i] + "\t");
    index++;//累加 等同于 index = index+1;
    if (index % 10 == 0) {// 如果已经输出了10个数, 那么换行
     System.out.println();//换行
    }
   }
  }
 }
}

运行测试

17 34 51 68 85 102 119 136 153 170 
187 204 221 238 255 272 289 306 323 340 
357 374 391 408 425 442 459 476 493 510 
527 544 561 578 595 612 629 646 663 680 
697 714 731 748 765 782 799 816 833 850 
867 884 901 918 935 952 969 986
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ArvinSen
2016-01-11 · 超过52用户采纳过TA的回答
知道小有建树答主
回答量:127
采纳率:0%
帮助的人:81.4万
展开全部
public class TestMain {
    public static void main(String[] args) {
        int[] numbers = new int[1000];
        for (int i = 1; i <= 1000; i++) {
            numbers[i - 1] = i;
        }
        for (int i = 0; i < numbers.length; i++) {
            if (numbers[i] % 17 == 0) {
                System.out.println(numbers[i]);
            }
        }
    }
}

已测试,完全没有问题,要采纳啊

更多追问追答
追问

这样开头的
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dark19861201
2016-01-11 · TA获得超过2152个赞
知道大有可为答主
回答量:2584
采纳率:79%
帮助的人:1779万
展开全部
public class Multiple {
public static void main(String[] args) {
    //定义1000的数组
    int[] n = new int[1000];
    //通过循环给数组赋值
    for(int i=0;i<n.length-1;i++){
    n[i]=i+1;
    }
    //循环检查数组中17的倍数并打印
    for(int i=0;i<n.length-1;i++){
    if(n[i]>17&&n[i]%17==0){
        System.out.println(n[i]);
        }
    }
    }
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
gj591851
2016-01-11 · TA获得超过131个赞
知道小有建树答主
回答量:94
采纳率:100%
帮助的人:85.1万
展开全部
int[] array = new int[1000];
int count = 0;
for (int i = 0; i < array.length; i++) {
    array[i] = i + 1;
    if (array[i] % 17 == 0) {
        System.Out.print(array[i]);
        if (++count % 5 == 0) {
            System.Out.println(); // 每5个数换行输出
        }
    }
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
vortexchoo
2016-01-11 · TA获得超过543个赞
知道小有建树答主
回答量:501
采纳率:40%
帮助的人:87.5万
展开全部
public class Tester{

public static void main(String[] args) {

int array[] = new int[1000];

int i = 1;

while(i<=1000){

array[i-1] = i;

if(i%17==0){

System.out.println(i);

System.out.println("i/17="+(i/17));

}

i++;

}

}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式