首页 > 其他 > 详细

及格问题

时间:2015-11-18 21:29:48      阅读:301      评论:0      收藏:0      [点我收藏+]
package demo;
import javax.swing.JOptionPane;

class NotNumber extends Exception{
}
public class Credit {
    public static void main(String[] args){
        int cre = 0;
        String c;
        try{
        c=JOptionPane.showInputDialog("请输入成绩:");
        cre = Integer.parseInt(c);
        }
        catch(Exception e){    
            cre = 200;
        }
        if(cre<60)
        {
            JOptionPane.showMessageDialog(null,"不及格", "result",JOptionPane.INFORMATION_MESSAGE);
        }
        else if(cre<70){
            JOptionPane.showMessageDialog(null,"及格", "result",JOptionPane.INFORMATION_MESSAGE);
        }
        else if(cre<80){
            JOptionPane.showMessageDialog(null,"中", "result",JOptionPane.INFORMATION_MESSAGE);
        }
        else if(cre<90){
            JOptionPane.showMessageDialog(null,"良", "result",JOptionPane.INFORMATION_MESSAGE);
        }
        else if(cre<=100){
            JOptionPane.showMessageDialog(null,"优", "result",JOptionPane.INFORMATION_MESSAGE);
        }
        else if(cre==200){
            JOptionPane.showMessageDialog(null,"输入数据有误,请重新输入", "worning",JOptionPane.INFORMATION_MESSAGE);
        }
    }
    
}

及格问题

原文:http://www.cnblogs.com/19950216z/p/4975729.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!