黑马程序员技术交流社区

标题: 最大值写入文件 [打印本页]

作者: 在学野马    时间: 2014-10-14 10:12
标题: 最大值写入文件
本帖最后由 在学野马 于 2014-10-14 14:46 编辑
  1. public static void main(String[] args) throws Exception {
  2.                 // TODO Auto-generated method stub

  3.                 BufferedReader bfr=new BufferedReader(new InputStreamReader(System.in));
  4.                 BufferedWriter bfw=new BufferedWriter(new FileWriter("c:\\stud.txt"));
  5.                 String line=null;
  6.                 while((line=bfr.readLine())!=null){
  7.                         if(line.equals("end"))
  8.                                 break;
  9.                         bfw.write(shuzu(line));
  10.                         bfw.newLine();
  11.                         bfw.flush();
  12.                 }
  13.                 bfr.close();
  14.                 bfw.close();
  15.         }

  16.         private static int shuzu(String line) {
  17.                 // TODO Auto-generated method stub
  18.                 line=line.substring(1, line.length()-1);
  19.                 String[]str=line.split(",");
  20.                 int[]arr=new int[str.length];
  21.                 int max=arr[0];
  22.                 for(int i=0;i<str.length;i++){
  23.                         int m=Integer.parseInt(str[i]);
  24.                         arr[i]=m;
  25.                 }
  26.                 for(int i=0;i<arr.length;i++){
  27.                         if(max<arr[i]){
  28.                                 max=arr[i];
  29.                         }
  30.                 }
  31.                 System.out.println(max);
  32.                 return max;
  33.         }
复制代码






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2