私は理解できない問題を抱えているので、私はいくつかの助けのために私のコードを投稿しています。私はこれの初心者であり、do-whileループについて説明したばかりなので、残念です。:)割り当ては、最小と最大を格納し、エントリの数を取得し、-99のエントリで終了する整数エントリプログラムを作成することでした。いくつかの整数を入力すると、カウントが間違っているのに対し、他の整数は正しいことがわかりました。データ:15、30、25、20...は「2つの数字を入力しました」と表示されます。他のエントリは正しく表示されます。何が足りないのか教えていただければ幸いです。
import java.util.Scanner;
public class LargestSmallest {
public static void main(String[] args)
{
int entry, smaller=0, larger=0,count=0;
boolean again=true;
Scanner input = new Scanner(System.in);
do
{System.out.print("Enter your integer: ");
entry = input.nextInt();
if (count==0 && entry !=-99)
{
larger = entry;
smaller = entry;
count +=1;
}
else
{
if (entry < smaller && entry!=-99 )
{
smaller = entry;
count+=1;
}
else if (entry > larger && entry !=-99)
{
larger = entry;
count+=1;
}
}
if (entry == -99)
again = false;
}
while (again);
if (count >1)
{
System.out.println("You entered "+count+" numbers.");
System.out.println("Your smallest number is: "+ smaller);
System.out.println("Your largest number is: "+larger);
}
}
}