私は2つの境界の間にすべての奇数を追加するプログラムを書く必要があります。私は奇数を追加するようにしましたが、境界の1つが否定的であれば、それを働かせることができます。これは私がすでに助けてくれたコードです。奇数合計今すぐ動作
import java.util.Scanner;
/**
Computes a sum of odd integers between two bounds.
Input: a, the lower bound (may be odd or even).
Input: b, the upper bound (may be odd or even).
Output: sum of odd integers between a and b (inclusive).
*/
public class OddSum
{
public static void main(String[] args)
{
// Read values for a and b
Scanner in = new Scanner(System.in);
int a = in.nextInt();
int b = in.nextInt();
int sum = 0;
int swap;
if(a > b) {
swap = a;
a = b;
b = swap;
}
for (int i = a; i <=b; i++){
if (i % 2 ==1)
sum +=i;
}
System.out.println(sum);
}
}
ありがとうございました。今すぐ素晴らしい作品 – jzaunegger