10

我这里有一个烦人的案例;其中我无法正确输入。我一直通过 接受输入Scanner,不习惯BufferedReader.


输入格式


First line contains T, which is an integer representing the number of test cases.
T cases follow. Each case consists of two lines.

First line has the string S. 
The second line contains two integers M, P separated by a space.

例子

Input:
2
AbcDef
1 2
abcabc
1 1

到目前为止我的代码:


public static void main (String[] args) throws java.lang.Exception
{
    BufferedReader inp = new BufferedReader (new InputStreamReader(System.in));
    int T= Integer.parseInt(inp.readLine());

    for(int i=0;i<T;i++) {
        String s= inp.readLine();
        int[] m= new int[2];
        m[0]=inp.read();
        m[1]=inp.read();

        // Checking whether I am taking the inputs correctly
        System.out.println(s);
        System.out.println(m[0]);
        System.out.println(m[1]);
    }
}

输入上述示例时,我得到以下输出:

AbcDef
9
49
2
9
97
4

3 回答 3

16

BufferedReader#read从流中读取单个字符[0 到 65535 (0x00-0xffff)],因此无法从流中读取单个整数。

            String s= inp.readLine();
            int[] m= new int[2];
            String[] s1 = inp.readLine().split(" ");
            m[0]=Integer.parseInt(s1[0]);
            m[1]=Integer.parseInt(s1[1]);

            // Checking whether I am taking the inputs correctly
            System.out.println(s);
            System.out.println(m[0]);
            System.out.println(m[1]);

您还可以检查Scanner 与 BufferedReader

于 2012-11-16T06:38:00.443 回答
2

由于inp.read(); 方法的问题ID 。它一次返回单个字符,并且因为您将它存储到 int 类型的数组中,所以它只是存储它的 ascii 值。

你能做的很简单

for(int i=0;i<T;i++) {
    String s= inp.readLine();
    String[] intValues = inp.readLine().split(" ");
    int[] m= new int[2];
    m[0]=Integer.parseInt(intValues[0]);
    m[1]=Integer.parseInt(intValues[1]);

    // Checking whether I am taking the inputs correctly
    System.out.println(s);
    System.out.println(m[0]);
    System.out.println(m[1]);
}
于 2012-11-16T06:39:32.197 回答
1

BufferedReader您不能像使用Scannerclass那样单独读取一行中的单个整数。虽然,您可以对查询执行以下操作:

import java.io.*;
class Test
{
   public static void main(String args[])throws IOException
    {
       BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
       int t=Integer.parseInt(br.readLine());
       for(int i=0;i<t;i++)
       {
         String str=br.readLine();
         String num[]=br.readLine().split(" ");
         int num1=Integer.parseInt(num[0]);
         int num2=Integer.parseInt(num[1]);
         //rest of your code
       }
    }
}

我希望这能帮到您。

于 2017-07-04T16:05:46.997 回答