当前位置:  开发笔记 > 编程语言 > 正文

带数组的令牌语法错误

如何解决《带数组的令牌语法错误》经验,为你挑选了1个好方法。



1> Yassin Hajaj..:

您需要将代码放入main方法中,因为它是程序的输入.

在那个,指令不允许在类的主体内,但在其方法或块中.


public class multiples_of_13 {
    public static void main(String[] args) {
        int[] thirteens = new int[400];
        int numFound = 0;
        // candidate: the number that might be a multiple
        // of 13
        int candidate = 1;

        System.out.println("the first 400 multiples of 13:" );

        while (numFound < 400) {
            if (candidate % 13 == 0) {
                thirteens[numFound] = candidate;
                numFound++;
            }
            candidate++;
        }
        System.out.println("First 400 multiples of 13:");
        for (int i = 0; i < 400; i++) {
            System.out.print(thirteens[i] + " ");
        }
    }
}

推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有