首页 > 编程语言 > 详细

java_if_else__

时间:2018-07-30 23:55:48      阅读:262      评论:0      收藏:0      [点我收藏+]

技术分享图片1 、 语法

import java.util.Scanner;
public class Dome4{    
public static void main(String []args){
    Scanner input = new Scanner (System.in);
    String id="",password="",id1="admin",password1="666";
    int a,b,c,max;
    System.out.print("请输入账号:");
    id=input.next();
    if(id.equals(id1)){
        System.out.print("请输入密码:");
        password=input.next();
        if(password.equals(password1)){
            System.out.print("登录成功!");
            System.out.print("请输入第一个数:");
            a=input.nextInt();
            System.out.print("请输入第二个数:");
            b=input.nextInt();
            System.out.print("请输入第三个数");
            c=input.nextInt();
            if(a>b){
                max = a ;
            }
            else {
                max = b ;
            }
            if(max >c ){
                max =max ;
            }
            else {
                max = c;
            }
            System.out.println("最大值为:"+max);
        }
    }
    else{
        System.out.print("账号错误,请重新输入:");
    }
}
}

技术分享图片if( 条件 ){

技术分享图片语句块M...;

技术分享图片技术分享图片}else{

技术分享图片语句块N...;

技术分享图片}

语句块Z...;

技术分享图片技术分享图片 

java_if_else__

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

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