gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 06:58:48 25 4
gpt4 key购买 nike

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

谢谢

这里是一些代码,我写的减去一些部分。

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")
}

}

最佳答案

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

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

关于java - 如何在 if 循环中排除负数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32263349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com