繁体   English   中英

基本数学的Java逻辑错误

[英]Java logic error with basic math

我正在学习基本的Java类,并且很难以编程方式进行思考,所以请在这里忍受。 我应该编写一个将用户定义范围内的所有奇数加起来的程序-简单吧? 好吧,我以为我已经找到了执行此操作的代码,但是数学总是错误的。 程序将返回46,而不是从1到14的范围等于19(1 + 3 + 5 ...)。它只有3的偏移量,这使我觉得自己正接近正确的代码。

这是当前的示例输出:

The value input is 14
DEBUG:   The current value of variable sum is: 4
DEBUG: The current value of variable ctr is: 3
DEBUG:   The current value of variable sum is: 10
DEBUG: The current value of variable ctr is: 7
DEBUG:   The current value of variable sum is: 22
DEBUG: The current value of variable ctr is: 11
DEBUG:   The current value of variable sum is: 46
DEBUG: The current value of variable ctr is: 15
The sum of the odd numbers from 1 to 14 is 46

这是麻烦的方法:

    public static void calcSumPrint(int topEndNumber) {
    //calc and print sum of the odd number from 1 to top-end number
    //uses loop to add odd numbers 
    //display results: range (eg: 1 to 13), sum of odd numbers
        for (ctr = 1; ctr <= topEndNumber; ctr = ctr + 2) {
            nextOddNumber = sum + 2;
            sum = sum + nextOddNumber;
            ctr = ctr + 2;
            if (debug) {
                System.out.println("DEBUG:   The current value of variable sum is: " + sum);
                System.out.println("DEBUG: The current value of variable ctr is: " + ctr);
            }
        }   

        System.out.println("The sum of the odd numbers from 1 to " + topEndNumber + " is " + sum);

    }//end of calcSumPrint

这是程序:

import java.util.Scanner;

public class sumOdds {
    static int topEndNumber = 0;
    static int ctr = 0;
    static int intermediateSum = 0;
    static int sum = 1;
    static boolean debug = true;
    static int nextOddNumber = 0;


    public static void main(String[] args) {
        getLimitNumber();
        System.out.println("The value input is " + topEndNumber);
        calcSumPrint(topEndNumber);

    }//end of main

    public static int getLimitNumber() {
        //lets uer input top-end number to be used in program [X]
        //catches exception if non-integer value is used [X]
        //verifies that the input number has a value of at least 1 [ ]
        //returns verified int to method caller [ ]
        Scanner input = new Scanner(System.in);
        boolean done = false;
        while (done != true) {
            try {
                System.out.println("Enter a positive whole top-end number to sum odds of:");
                topEndNumber = input.nextInt();
                    if (topEndNumber <= 0){
                        throw new NumberFormatException();
                    }
                done = true;
            }//end of try
            catch (Exception message) {
                //put exception in here
                input.nextLine();
                System.out.println("Bad input, retry");
            }//end of catch
        }//end of while
        input.close();


        //to shut up eclipse
        return topEndNumber;


    }//end of getLimitNumber

    public static void calcSumPrint(int topEndNumber) {
    //calc and print sum of the odd number from 1 to top-end number
    //uses loop to add odd numbers 
    //display results: range (eg: 1 to 13), sum of odd numbers
        for (ctr = 1; ctr <= topEndNumber; ctr = ctr + 2) {
            nextOddNumber = sum + 2;
            sum = sum + nextOddNumber;
            ctr = ctr + 2;
            if (debug) {
                System.out.println("DEBUG:   The current value of variable sum is: " + sum);
                System.out.println("DEBUG: The current value of variable ctr is: " + ctr);
            }
        }   

        System.out.println("The sum of the odd numbers from 1 to " + topEndNumber + " is " + sum);

    }//end of calcSumPrint

    public static int doAgain() {
    //ask and verify the user wants to re-run program, return int

    //to shut up eclipse
        return 20000;
    }//end of doAgain

}//end of class

我可能会想念您的事吗? 我很想弄清楚这一点,并且一直在办公室里全天候观察算法的变化,这让我发疯了,数学无法解决。

for循环中,ctr的值已经增加了2

所以

sum = 0;
for (ctr = 1; ctr <= topEndNumber; ctr = ctr + 2) {
        sum += ctr;
} 

将为您提供所需的答案。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM