| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 401 人关注过本帖
标题:[求助]大家帮忙看看这个程序
取消只看楼主 加入收藏
hwj20070118
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2007-1-18
收藏
 问题点数:0 回复次数:0 
[求助]大家帮忙看看这个程序

大家看看,这个程序有错吗?
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class InputStringTwo {

/**
* @param args
* @throws IOException
* @throws NumberFormatException
*/
public static void main(String[] args) throws NumberFormatException, IOException {
// TODO 自动生成方法存根
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int i,max=0,min;
int a[]=new int[5];
System.out.println("请输入五个数:");
for(i=0;i<a.length;i++)
{
a[i]= Integer.parseInt(br.readLine());
}

for(i=0;i<a.length;i++)
if(a[i]>max){
max=a[i];
}
min=a[0];
for (i=0;i<a.length;i++){
if (min>a[i]){
min=a[i];
}
}
System.out.println("max="+max);
System.out.println("min="+min);
}
}
还有,BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); 是什么意思?
new InputStreamReader(System.in); 又是什么意思/

搜索更多相关主题的帖子: public import public import 
2007-04-03 16:30
快速回复:[求助]大家帮忙看看这个程序
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025030 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved