51Testing软件测试论坛

标题: 有没有大佬帮忙看看,程序为什么能运行但报错不出结果。 [打印本页]

作者: 测试积点老人    时间: 2020-8-18 15:46
标题: 有没有大佬帮忙看看,程序为什么能运行但报错不出结果。
  1. package zh.codegym.task.task05.task0532;

  2. import java.util.Scanner;
  3. /*
  4. 有关算法的任务
  5. */

  6. public class Solution {
  7. public static void main(String[] args) {
  8. Scanner sc = new Scanner(System.in);
  9. int N = sc.nextInt();
  10. int i;

  11.    if (N > 0) {
  12.        int max = 0;

  13.        for (i = 1; i <= N; i++) {
  14.            int a = sc.nextInt();
  15.            int b = sc.nextInt();
  16.            max = a < b ? a : b;


  17.        }
  18.        System.out.println(max);
  19.    }
  20.    if(N<=0){
  21.        System.out.println();
  22.    }

  23. }

  24. }
复制代码
编写程序,使其:
1. 从控制台读取数字 N(必须大于 0)
2. 从控制台读取 N 个数字
3.显示 N 个输入数字中的最大值。
要求:
1.程序应从键盘读取这些数字。
2.程序必须在屏幕上显示一个数字。
3.该类必须包含 public static void main 方法。
4.不要向 Solution 类添加新方法。
5.程序应显示 N 个输入数字中的最大值。
6.如果 N 小于或等于 0,程序不应显示任何内容。
绝望到家了,啥都满足了。就是没满足条件5,气死我鸟了。有大哥告诉我问题出在哪了么!!


作者: bellas    时间: 2020-8-19 09:55
等大佬
作者: 海海豚    时间: 2020-8-19 10:09
https://ask.csdn.net/questions/1081411  看下这个
作者: jingzizx    时间: 2020-8-19 12:41
单步调试
作者: 郭小贱    时间: 2020-8-19 17:12
import java.util.Scanner;

public class Solution {
    public static void main(String[] args){
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        if(N > 0){
            int max = scan.nextInt();   //假设第一个数是最大的
            int i = 1;
            while(i < N){
                int next = scan.nextInt();  //不断读取下一个数
                i++;
                if(max < next){
                    max = next;     //将读到的数与当前最大值比较,维护最大值变量
                }
            }
            System.out.println(max);
        }
        scan.close();
    }
}




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2