JAVA 異常處理

來源:互聯網
上載者:User

標籤:string   extends   break   core   throws   image   xtend   成績   技術   

 

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

Class  Geshiexception extends Exception{

       public Geshiexception(String a){

      super(a);

}

}

 

public class Score {

         public static void main(String[] args) throws IOException{

         BufferedReader cin=new BufferedReader(new InputStreamReader(System.in));            //輸入函數

         System.out.println("請輸入成績:");

         String str=cin.readLine();

         int t=0;

         double a;

         while(true){                //直到輸入成績的格式正確才停止

         try{                   //監控容易出問題的程式

              for(int i=0;i<str.length();i++)

              {

                   if(str.charAt(i)>‘9‘||str.charAt(i)<‘0‘)

                  {

                          throw new Geshiexception("格式錯誤!");

                  }

         }

         a=Double.parseDouble(str);         //將String類型轉成double類型

         if(a>100)

         throw new Geshiexception("格式錯誤!超值");

         break;

        }

         catch(Geshiexception e){         //異常處理

               System.out.println(e);

               System.out.println("請重新輸入成績:");

               str=cin.readLine();

        }

      }

       if(a>=90)

       System.out.println("優");

       else if(a<90&&a>=80)

       System.out.println("良");

       else if(a<80&&a>70)

       System.out.println("中");

       else if(a<70&&a>60)

       System.out.println("及格");

       else if(a<60)

       System.out.println("不及格");

}

}

運行

 

JAVA 異常處理

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.