Java输入流学习(读取整数方法)

/*题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,
     60分以下的用C表示。*/

关键代码:
          BufferedReader is = new BufferedReader(new InputStreamReader(System.in));   
          String strIn = is.readLine();         
          int  i  =   Integer.parseInt(strIn);

所有代码:
        

public static void main(String[] args) {
  // TODO Auto-generated method stub
  /*题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,
     60分以下的用C表示。*/
  int i=90;
  try
    {
     BufferedReader is = new BufferedReader(new InputStreamReader(System.in));  
     String strIn = is.readLine();  
        i =  Integer.parseInt(strIn);
    }

  catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  char str=(i>=90)?'A':(i>=60)?'B':'C';
  System.out.print(str);
 };

posted on 2008-09-18 13:42 冰岛 阅读(2206) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航:
 
<2008年9月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

导航

统计

常用链接

留言簿(1)

随笔档案

搜索

最新评论