运行时错误:线程" main"中的异常java.util.NoSuchElementException

时间:2017-02-02 11:10:25

标签: java nosuchelementexception

我一直在codechef编译器上遇到这个运行时异常,不知道我做错了什么。我知道问题出在Scanner类中,但无法弄清楚它是什么? (不要使用缓冲读卡器)

import java.util.*;
import java.lang.*;
import java.io.*;
class Codechef
{
    public static void main (String[] args) throws java.lang.Exception
    {

        Scanner in = new Scanner(System.in);
        int t = in.nextInt();
        for (int t_i=0;t_i<t;t_i++ )
        {

        long n = in.nextLong();
        long x = in.nextLong();
        long rem=n%x;
        System.out.println(rem);
        }

    }
}

输入: 1 10 3

提供运行时异常。

0 个答案:

没有答案