Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Java SE 综合讨论区
打印话题 寄给朋友 订阅主题 |
作者 | 请教个问题(BufferedReader.read() 输入的值与输出的不同) |
cxc3980
发贴: 14 积分: 0 |
于 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());} } }
why edited on 2005-05-27 03:22
Hibernate开发指南 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
4391 | 请教个问题(BufferedReader.read() 输入的值与输出的不同) | cxc3980 | 1123 | 2005-05-27 00:50 |
已读帖子 新的帖子 被删除的帖子 |
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 |