首页 > 编程语言 > 详细

java__if_else 的练习

时间:2018-07-31 22:57:00      阅读:157      评论:0      收藏:0      [点我收藏+]
import java.util.Scanner;
public class Dome1{
    public static void main (String []args){
        Scanner input = new Scanner (System.in );
        int a,b,c,d;
        float e;
        System.out.print("请输入第一个数:");
        a= input.nextInt();
        System.out.print("请输入第二个数:");
        b= input.nextInt();
        System.out.print("请输入第三个数:");
        c= input.nextInt();
        d=a+b+c;
        e=d/3;
        if(e>100||e<0){
            System.out.print("不在范围内");
        }
        else{    
            if(e>=90&&e<=100){
                System.out.print("甲");
            }
            else if(e>=80&&e<=90){
                System.out.print("乙");
            }
            else if(e>=70&&e<=80){
                System.out.print("丙");
            }else if(e>=60&&e<=70){
                System.out.print("丁");
            }
            else{
                System.out.print("不合格");
            }
        }
        
        
        
    }
    
    
}

 

java__if_else 的练习

原文:https://www.cnblogs.com/jingcaibin/p/9398616.html

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