A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 在学野马 中级黑马   /  2014-10-14 10:12  /  1025 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 在学野马 于 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.         }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马