zoukankan      html  css  js  c++  java
  • 代码2

    package Account;
    import java.util.Scanner;
    import java.util.ArrayList;
    import java.util.*;
    public class AccountManager {
    public static void main(String[] args){
    Account comd[]=new Account[5];
    comd[0]=new Account("20173492","GaoXinYue","777777",66666);
    comd[1]=new Account("20173366 ","asdasd","888888",2000);
    comd[2]=new Account("20183492","王某","456789",3000);
    comd[3]=new Account("20193492 ","刘某","456120",2000);
    comd[4]=new Account("20203492","田某","561273",1500);

    System.out.println("***************************************************************");
    System.out.println(" 欢迎使用中国工商银行自动柜员系统 ");
    System.out.println("***************************************************************");
    System.out.println(" 请输入您的账号:");
    System.out.println("***************************************************************");
    Scanner sc = new Scanner (System.in);
    @SuppressWarnings("unused")
    int [] passworld={777777,888888,456789,456120,561273};
    int t = sc.nextInt();
    int [] ID={20173492,20173366,20183492,20173492,20203492};
    if (t!=ID[0]&&t!=ID[1]&&t!=ID[2]&&t!=ID[3]&&t!=ID[4])System.out.println("该账号不存在");
    else if (t==ID[0]||t==ID[1]||t==ID[2]||t==ID[3]||t==ID[4])
    {
    System.out.println("该账号存在");
    System.out.println("***************************************************************");
    System.out.println(" 欢迎使用中国工商银行自助柜员系统 ");
    System.out.println("***************************************************************");
    System.out.println(" 请输入您的密码:");
    System.out.println("***************************************************************");
    Scanner sce = new Scanner (System.in);
    int ed=sce.nextInt();
    if(ed!=passworld[0]&&ed!=passworld[1]&&ed!=passworld[2]&&ed!=passworld[3]&&ed!=passworld[4])System.out.println("密码不对");
    else if((t==ID[0]&&ed==passworld[0])||(t==ID[1]&&ed==passworld[1])||(t==ID[2]&&ed==passworld[2])||(t==ID[3]&&ed==passworld[3])||(t==ID[4]&&ed==passworld[4]))
    {
    String it="";
    do
    {
    int i=0;
    int k=0;
    int j=0;
    double n=0;
    Account ae = null;
    System.out.println(" 欢迎使用中国工商银行自助柜员系统 ");
    System.out.println("***************************************************************");
    System.out.println(" 1.存款");
    System.out.println(" 2.取款");
    System.out.println(" 3.转账汇款");
    System.out.println(" 4.修改密码");
    System.out.println(" 5.查询余额");
    System.out.println("***************************************************************");
    Scanner eds = new Scanner (System.in);
    it=eds.next();

    switch(Integer.parseInt(it))
    {
    case '1':
    {
    ae.menu(i);
    Scanner sced = new Scanner (System.in);
    int aed=sce.nextInt();
    while(aed<0||aed-(int)aed>0.00001)
    {
    System.out.println("输入金额有误");
    ae.menu(i);
    aed=sce.nextInt();
    }
    ae.cunkuan(aed, i);
    };break;
    case '2':
    {

    }
    case '3':

    {
    ae.huikuan(i);
    int zhanghu;
    Scanner qw = new Scanner (System.in);
    int zhuanghu=qw.nextInt();
    ae.zhuanzhang(i)
    }
    case '4':
    {
    ae.xiugaimima(i);
    Scanner qw = new Scanner (System.in);
    int ymi1=qw.nextInt();
    Scanner qwe = new Scanner (System.in);
    int nmi1=qwe.nextInt();
    Scanner qwer= new Scanner (System.in);
    int nmi2=qwer.nextInt();

    }
    }
    }while (it.compareTo("q")!=0);
    }

    }
    }
    }

    是多疑还是去相信 谎言背后的忠心 或许是自己太执迷 命题游戏 沿着他的脚步 呼吸开始变得急促 就算看清了面目 设下埋伏 真相却居无定处 I swear I'll never be with the devil 用尽一生孤独 没有退路的路 你看不到我 眉眼焦灼却不明下落 命运的轮轴 伺机而动 来不及闪躲 沿着他的脚步 呼吸开始变得急促 就算看清了面目 设下埋伏 真相却居无定处 I swear I'll never be with the devil 用尽一生孤独 没有退路的路 你看不到我 眉眼焦灼却不明下落 命运的轮轴 伺机而动 来不及闪躲 你看不到我 眉眼焦灼却不明下落 命运的轮轴 伺机而动 来不及闪躲 黑夜和白昼 你争我夺 真相被蛊惑 心从不退缩 这天堂荒漠 留给孤独的猎手
  • 相关阅读:
    Hihocoder 1275 扫地机器人 计算几何
    CodeForces 771C Bear and Tree Jumps 树形DP
    CodeForces 778D Parquet Re-laying 构造
    CodeForces 785E Anton and Permutation 分块
    CodeForces 785D Anton and School
    CodeForces 785C Anton and Fairy Tale 二分
    Hexo Next 接入 google AdSense 广告
    如何统计 Hexo 网站的访问地区和IP
    Design and Implementation of Global Path Planning System for Unmanned Surface Vehicle among Multiple Task Points
    通过ODBC接口访问人大金仓数据库
  • 原文地址:https://www.cnblogs.com/muailiulan/p/9696079.html
Copyright © 2011-2022 走看看