最大/最小输出未展示正确的值。

huangapple go评论110阅读模式
英文:

The Largest/Smallest Outputs do not showcase the right values

问题

应该输出输入中的最大/最小数字,看起来有什么问题?我尝试在网上查找,源代码似乎是相同的。谢谢您的帮助。

源代码:

  1. package counting.largest.smallest;
  2. import java.util.Scanner;
  3. public class CountingLargestSmallest {
  4. public static void main(String[] args) {
  5. Scanner TheN = new Scanner(System.in);
  6. int counter = 0;
  7. int number;
  8. int smallest = Integer.MIN_VALUE;
  9. int largest = Integer.MAX_VALUE;
  10. while (counter < 10) {
  11. System.out.print("Integer=");
  12. number = TheN.nextInt();
  13. counter++;
  14. if (number < smallest) {
  15. smallest = number;
  16. } else if (number > largest) {
  17. largest = number;
  18. }
  19. }
  20. System.out.println("\nSmallest=" + smallest);
  21. System.out.println("Largest=" + largest);
  22. }
  23. }

输出:

  1. Integer=1
  2. Integer=2
  3. Integer=3
  4. Integer=4
  5. Integer=5
  6. Integer=6
  7. Integer=7
  8. Integer=8
  9. Integer=9
  10. Integer=10
  11. Smallest=1
  12. Largest=10
英文:

Should receive an output of the largest/smallest numbers within the inputs, what seems to be the problem? I have tried looking it up online, the source code appears to be the same. Thank you for your assistance.

Source code:

  1. package counting.largest.smallest;
  2. import java.util.Scanner;
  3. public class CountingLargestSmallest {
  4. public static void main(String[] args) {
  5. Scanner TheN = new Scanner(System.in);
  6. int counter = 0;
  7. int number;
  8. int smallest = Integer.MIN_VALUE;
  9. int largest = Integer.MAX_VALUE;
  10. while (counter &lt; 10) {
  11. System.out.print(&quot;Integer=&quot;);
  12. number = TheN.nextInt();
  13. counter++;
  14. if (number &lt; smallest) {
  15. number = smallest;
  16. } else if (number &gt; largest) {
  17. number = largest;
  18. }
  19. }
  20. System.out.println(&quot;\nSmallest=&quot; + smallest);
  21. System.out.println(&quot;Largest=&quot; + largest);
  22. }
  23. }

Output:

  1. Integer=1
  2. Integer=2
  3. Integer=3
  4. Integer=4
  5. Integer=5
  6. Integer=6
  7. Integer=7
  8. Integer=8
  9. Integer=9
  10. Integer=10
  11. Smallest=-2147483648
  12. Largest=2147483647

答案1

得分: 1

这是翻译好的部分:

有3个错误:

  1. int smallest=Integer.MIN_VALUE;
  2. int largest=Integer.MAX_VALUE;
  1. number=smallest;
  2. number=largest;
  1. 使用 else if<br>

1: 当你想找到最小的数时,将它保持为 Integer.MAX_VALUE,当你想找到最大的数时,将它保持为 Integer.MIN_VALUE。<br>

为什么对于最小值我们初始化为 Integer.MAX_VALUE,对于最大值我们初始化为 Integer.MIN_VALUE?<br>

假设你想从用户那里获取 n 个数字相乘。所以我们将变量 mul 声明并初始化为 1。因为我们知道任何数乘以 1 都会得到相同的数。<br>
然而,如果我们用 0 来初始化 mul,那么结果将始终为 0
所以我们说乘法中的 1单位元。<br>
类似地,为了找到 最小 数,我们使用一个单位元,即 Integer.MAX_VALUE。<br>
这样,小于 Integer.MAX_VALUE 的数将保存在 Smallest 变量中。

  1. int smallest=Integer.MAX_VALUE;

同样地,对于最大值,我们使用 Integer.MIN_VALUE 进行初始化,以便大于 Integer.MIN_VALUE 的数被保存在 largest 变量中。

  1. int largest=Integer.MIN_VALUE;

2: 你正在将 number 变量赋值为 smallestlargest 的值,应该是 smallest=numberlargest=number。<br>
当你写 x=0 时,它表示 x 等于 0,这意味着 x 发生了变化,类似地,当你写 number=smallest 时,number = Integer.MAX_VALUE,而 smallest 根本没有变化。<br>
所以你应该像这样写:smallest = number,这意味着最小值是这个数,而且 smallest 在每次满足条件时都会改变。

3: 当你写下面的代码时

  1. if(condition){
  2. }else if(conditon){
  3. }

只有在第一个 if 语句为 false 时,else if 才会执行,如果第一个条件为 true,则第二个 if 永远不会被执行。<br>
如果我们有一个降序的数字,那么第二个 if 将永远不会被执行,从而导致 largest 变量中有 Integer.MIN_VALUE。<br>
而在这里,你想要同时检查 最小最大,所以我们应该为每个条件都有独立的 if 语句。

  1. if(condition){
  2. }
  3. if(condition){
  4. }

代码:

  1. Scanner TheN= new Scanner(System.in);
  2. int counter=0;
  3. int number;
  4. // 已更改
  5. int smallest=Integer.MAX_VALUE;
  6. int largest=Integer.MIN_VALUE;
  7. while(counter&lt;10){
  8. System.out.print(&quot;Integer=&quot;);
  9. number=TheN.nextInt();
  10. counter++;
  11. if(number&lt;smallest){
  12. // 已更改
  13. smallest= number;
  14. }
  15. if(number&gt;largest){
  16. // 已更改
  17. largest=number;
  18. }
  19. }
  20. System.out.println(&quot;\nSmallest=&quot;+smallest);
  21. System.out.println(&quot;Largest=&quot;+largest);

输出:

  1. Integer=1
  2. Integer=2
  3. Integer=2
  4. Integer=4
  5. Integer=3
  6. Integer=6
  7. Integer=7
  8. Integer=8
  9. Integer=9
  10. Integer=10
  11. Smallest=1
  12. Largest=10
英文:

there were 3 bugs:

1.

  1. int smallest=Integer.MIN_VALUE;
  2. int largest=Integer.MAX_VALUE;

2.

  1. number=smallest;
  2. number=largest;
  1. Using else if<br>

1: When you want to find a min number keep it Integer.MAX_VALUE and when you want to find max keep it has Integer.MIN_VALUE.<br>

Why for min we Initialize Integer.MAX_VALUE and for max we Initialize Integer.MIN_VALUE?<br>

Say you want to multiple n numbers from the user. So we will declare and initialize mul variable to 1. cause we know any number multiple by 1 will give us the same number.<br>
Whereas if we initialize mul with 0 it will give us 0 only.
So we say 1 for multiplication is identity.<br>
Similarly, for finding Minimum number we use an identity that is Integer.MAX_VALUE.<br>
So that number that less then Integer.MAX_VALUE are saved in Samllest variable.

  1. int smallest=Integer.MAX_VALUE;

Similarly for max we initialize it with Integer.MIN_VALUE SO that number that are greater then Integer.MIN_VALUE are stored in largest variable.

  1. int largest=Integer.MIN_VALUE;

2: You are assigning number variable the value of smallest and largest it should be like smallest=number and largest=number<br>
when you write x=0 it says x is 0 that means x is changed, Similarly when you write number=smallest its number = Integer.MAX_VALUE and smallest is not changing at all.<br>
So you should write like smallest = number, It means smallest is the number and smallest is changing every time condition satisfies.

3: When you write

  1. if(condition){
  2. }else if(conditon){
  3. }

else if is only excuted when first if statement if false and if first condition is true second if is never executed.<br>
if we have descending number then second if will never be excuted which would result in having Integer.MIN_VALUE in largest variable.<br>
And here you want to check for both min and max so we should have indepent if statement for each

  1. if(condition){
  2. }
  3. if(condition){
  4. }

Code:

  1. Scanner TheN= new Scanner(System.in);
  2. int counter=0;
  3. int number;
  4. // changed
  5. int smallest=Integer.MAX_VALUE;
  6. int largest=Integer.MIN_VALUE;
  7. while(counter&lt;10){
  8. System.out.print(&quot;Integer=&quot;);
  9. number=TheN.nextInt();
  10. counter++;
  11. if(number&lt;smallest){
  12. // changed
  13. smallest= number;
  14. }
  15. if(number&gt;largest){
  16. // changed
  17. largest=number;
  18. }
  19. }
  20. System.out.println(&quot;\nSmallest=&quot;+smallest);
  21. System.out.println(&quot;Largest=&quot;+largest);

Output:

  1. Integer=1
  2. Integer=2
  3. Integer=2
  4. Integer=4
  5. Integer=3
  6. Integer=6
  7. Integer=7
  8. Integer=8
  9. Integer=9
  10. Integer=10
  11. Smallest=1
  12. Largest=10

huangapple
  • 本文由 发表于 2020年10月11日 16:39:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/64302102.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定