码迷,mamicode.com
首页 > 编程语言 > 详细

java__if_else 的练习

时间:2018-07-31 23:38:44      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:一个   stat   []   main   next   span   if_else   class   范围   

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 的练习

标签:一个   stat   []   main   next   span   if_else   class   范围   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!