Topic: 请教个问题(BufferedReader.read() 输入的值与输出的不同)

  Print this page

1.请教个问题(BufferedReader.read() 输入的值与输出的不同) Copy to clipboard
Posted by: cxc3980
Posted on: 2005-05-27 00:50

Last warning: your next post without a proper Subject will be removed!

You're just reading the first 3 characters.
http://java.sun.com/j2se/1.4.2/docs/api/java/io/BufferedReader.html#read()
You would have to parse the numbers from the input (line).



下面的这个程序
为什么输入的a.b.c 的值与输出的不同啊??
import java.io.*;
import java.util.*;
public class equation {
public static void main(String[] args) throws IOException,NoSuchElementException{
int a=0;
int b=0;
int c=0;
float delt;
float x1,x2;
try{
InputStreamReader reader=new InputStreamReader(System.in);
BufferedReader input=new BufferedReader(reader);
System.out.println("Please input a,b,c:");
int d[]=new int[3];
for(int i=0;i<3;i++)
d[i]=(int)input.read();
a=d[0];b=d[1];c=d[2];
System.out.println("a="+d[0]+", b="+d[1]+", c="+d[2]);
} catch(IOException e){System.out.println(e.getMessage());}
catch(NoSuchElementException e){System.out.println(e.getMessage());}
}
}


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923