简易后台银行操作系统

该博客介绍了如何设计一个简易的后台银行操作系统,重点在于处理用户输入的流程和错误处理机制。通过流程图展示操作步骤,当输入值缺失或错误时,系统能进行提示并允许用户重新输入。
摘要由CSDN通过智能技术生成

流程图,输入值没有或者错误是可进行提醒并重复输入
在这里插入图片描述

package com.tzh.yinhang;

import util.jdbc;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class hao1 {
   
    //转账姓名
    public static String zqxm;
    //收钱卡号
    public static int sqkh;
    //多少钱
    public static int dsq;
    //转钱的原来有多少钱
    public static int zqyl;
    //收钱的原来有多少钱
    public static int sqyl;
    Scanner input=new Scanner(System.in);
    public boolean f1(String a){
   
        zqxm=a;
        Connection con= jdbc.getcon();
        PreparedStatement prep=null;
        ResultSet resu=null;
        try {
   
            prep=con.prepareStatement("select * from yonghushuju where xming=?;");
            prep.setString(1, a);
            resu=prep.executeQuery();
            if(resu.next()){
   
                //有这个人查询其密码,卡号,余额
                List alist=f3(a);
                yonghushuju yh=(yonghushuju)alist.get(0);
                int cardhao=yh.getCardhao();
                int miam=yh.getMima();
                int ye=yh.getYe();
                zqyl=ye;
                return f4(cardhao,miam,ye);
            }else{
   
                System.out.println("没有这个人");
                return false;
            }
        } catch (Exception e) {
   
            e.printStackTrace();
        }finally {
   
            jdbc
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值