模拟银行取钱系统

需求提示

package zuoye;

import java.util.Scanner;

public class Zuoye4 {
	@SuppressWarnings("resource")
	public static void main(String[] args) {

		int pwd = 111111;

		Scanner sc = new Scanner(System.in);

		int i = 4;
		while (i > 0) {

			if (i == 1) {
				System.out.println("密码错误,三次机会用完,请取卡");
				break;
			} else {
				System.out.println("请输入您的密码,密码只能输入" + (i - 1) + "次,否则卡将退回");

				int j = sc.nextInt();
				if (j == pwd) {
					System.out.println("密码输入正确,您的余额为10000元,请输入您要取的金额。注:金额只能100-3000元之间,且为100的倍数");
					int money = sc.nextInt();
					if (money % 100 == 0 && money < 3000 && money > 100) {
						System.out.println("恭喜您取款成功,您的余额还剩" + (10000 - money) + "元");
					} else {
						System.out.println("您输入的金额不符合规则,请取卡");
					}
					break;
				}
				i--;
			}
		}
	}
}

在C语言中,模拟银行系统让用户输入密码并取款通常会涉及基本的控制结构、数据验证以及简单的文件操作。下面是一个简化的示例,假设我们有一个简单的文本文件存储账户信息: ```c #include <stdio.h> #include <stdlib.h> // 定义银行账户结构体 typedef struct { char account_number[50]; int balance; char password[50]; } BankAccount; // 验证密码函数 int verify_password(char* password, char* stored_password) { return strcmp(password, stored_password) == 0; // 如果一致则返回1,不一致返回0 } void deposit(int amount) { printf("Depositing money is not implemented in this simulation.\n"); } void withdraw(int amount, BankAccount* accounts) { if (amount <= accounts->balance && verify_password(accounts->password, "your_password")) { accounts->balance -= amount; printf("Withdrawal successful! New balance: %d\n", accounts->balance); } else { printf("Invalid password or insufficient funds.\n"); } } int main() { BankAccount bank_accounts[] = {{"123456", 1000, "your_password"}}; int choice, amount; while (1) { printf("\nSelect an option:\n1. Withdraw\n2. Exit\n"); scanf("%d", &choice); switch(choice) { case 1: printf("Enter withdrawal amount: "); scanf("%d", &amount); withdraw(amount, &bank_accounts[0]); break; case 2: printf("Exiting the program...\n"); exit(0); default: printf("Invalid choice.\n"); } } return 0; } ``` 在这个示例中,我们首先定义了一个`BankAccount`结构体,并创建一个数组表示单个账户。`verify_password`函数用于比较用户输入的密码是否匹配。在`withdraw`函数里,用户可以输入金额尝试取款,如果密码正确且余额足够,则扣除相应金额。 请注意,这只是一个基础示例,实际应用中应更安全地处理密码和数据,例如加密存储,以及使用命令行参数而不是直接硬编码在代码中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值