如何在if循环中排除负数?

时间:2015-08-28 04:28:47

标签: java loops if-statement

对于我的项目,用户输入一组数字,并执行一些计算以提供所需的输出。其中一个计算是找到输入的奇数之和。查看给定的测试用例,我注意到我的代码添加了负数奇数,而正确的测试用例却没有。这有什么简单的解决方法吗?

由于

以下是一些代码,我写的内容减去了几个部分。

import java.util.Scanner;

public class Test 
{
public static void main (String[] args)
{
    int min_interger = 0;
    int sum_of_pos = 0;
    int sum_of_odd = 0;
    int count_of_pos = 0;
    int userInput;

    Scanner consoleInput = new Scanner(System.in);

    do {userInput = consoleInput.nextInt();


    if(userInput % 2 != 0)
    {
        sum_of_odd = sum_of_odd + userInput;
    }

    while (userInput != 0);

    System.out.print("The sum of the odd integers is " + sum_of_odd + "\n")
}

}

1 个答案:

答案 0 :(得分:4)

确保添加奇数和大于零的数字

if(userInput % 2 != 0 && userInput > 0)
    {
        sum_of_odd = sum_of_odd + userInput;
    }