个人银行管理系统6(C改Java)

  • C语言版本
//date.h
#ifndef __DATE_H__
#define __DATE_H__

class Date {	//日期类
private:
	int year;		//年
	int month;		//月
	int day;		//日
	int totalDays;	//该日期是从公元元年1月1日开始的第几天

public:
	Date(int year, int month, int day);	//用年、月、日构造日期
	int getYear() const { return year; }
	int getMonth() const { return month; }
	int getDay() const { return day; }
	int getMaxDay() const;		//获得当月有多少天
	bool isLeapYear() const {	//判断当年是否为闰年
		return year % 4 == 0 && year % 100 != 0 || year % 400 == 0;
	}
	void show() const;			//输出当前日期
	//计算两个日期之间差多少天	
	int operator - (const Date& date) const {
		return totalDays - date.totalDays;
	}
};

#endif //__DATE_H__

//date.cpp
#include "date.h"
#include <iostream>
#include <cstdlib>
using namespace std;

namespace {	//namespace使下面的定义只在当前文件中有效
	//存储平年中某个月1日之前有多少天,为便于getMaxDay函数的实现,该数组多出一项
	const int DAYS_BEFORE_MONTH[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
}

Date::Date(int year, int month, int day) : year(year), month(month), day(day) {
	if (day <= 0 || day > getMaxDay()) {
		cout << "Invalid date: ";
		show();
		cout << endl;
		exit(1);
	}
	int years = year - 1;
	totalDays = years * 365 + years / 4 - years / 100 + years / 400
		+ DAYS_BEFORE_MONTH[month - 1] + day;
	if (isLeapYear() && month > 2) totalDays++;
}

int Date::getMaxDay() const {
	if (isLeapYear() && month == 2)
		return 29;
	else
		return DAYS_BEFORE_MONTH[month]- DAYS_BEFORE_MONTH[month - 1];
}

void Date::show() const {
	cout << getYear() << "-" << getMonth() << "-" << getDay();
}

//Array.h
#ifndef ARRAY_H
#define ARRAY_H

#include <cassert>

//数组类模板定义
template <class T> 
class Array {
private:
	T* list;	//T类型指针,用于存放动态分配的数组内存首地址
	int size;	//数组大小(元素个数)
public:
	Array(int sz = 50);			//构造函数
	Array(const Array<T> &a);	//拷贝构造函数
	~Array();	//析构函数
	Array<T> & operator = (const Array<T> &rhs); //重载"="使数组对象可以整体赋值
	T & operator [] (int i);	//重载"[]",使Array对象可以起到C++普通数组的作用
	const T & operator [] (int i) const;	//"[]"运算符的const版本
	operator T * ();	//重载到T*类型的转换,使Array对象可以起到C++普通数组的作用
	operator const T * () const;	//到T*类型转换操作符的const版本
	int getSize() const;	//取数组的大小
	void resize(int sz);	//修改数组的大小
};

//构造函数
template <class T>
Array<T>::Array(int sz) {
	assert(sz >= 0);	//sz为数组大小(元素个数),应当非负
	size = sz;	// 将元素个数赋值给变量size
	list = new T [size];	//动态分配size个T类型的元素空间
}

//析构函数
template <class T>
Array<T>::~Array() {
	delete [] list;
}

//拷贝构造函数
template <class T>
Array<T>::Array(const Array<T> &a) {
	//从对象x取得数组大小,并赋值给当前对象的成员
	size = a.size;
	//为对象申请内存并进行出错检查
	list = new T[size];	// 动态分配n个T类型的元素空间
	//从对象X复制数组元素到本对象  
	for (int i = 0; i < size; i++)
		list[i] = a.list[i];
}

//重载"="运算符,将对象rhs赋值给本对象。实现对象之间的整体赋值
template <class T>
Array<T> &Array<T>::operator = (const Array<T>& rhs) {
	if (&rhs != this) {
		//如果本对象中数组大小与rhs不同,则删除数组原有内存,然后重新分配
		if (size != rhs.size) {
			delete [] list;		//删除数组原有内存
			size = rhs.size;	//设置本对象的数组大小
			list = new T[size];	//重新分配n个元素的内存
		}
		//从对象X复制数组元素到本对象  
		for (int i = 0; i < size; i++)
			list[i] = rhs.list[i];
	}
	return *this;	//返回当前对象的引用
}

//重载下标运算符,实现与普通数组一样通过下标访问元素,并且具有越界检查功能
template <class T>
T &Array<T>::operator[] (int n) {
	assert(n >= 0 && n < size);	//检查下标是否越界
	return list[n];			//返回下标为n的数组元素
}

template <class T>
const T &Array<T>::operator[] (int n) const {
	assert(n >= 0 && n < size);	//检查下标是否越界
	return list[n];			//返回下标为n的数组元素
}

//重载指针转换运算符,将Array类的对象名转换为T类型的指针,
//指向当前对象中的私有数组。
//因而可以象使用普通数组首地址一样使用Array类的对象名
template <class T>
Array<T>::operator T * () {
	return list;	//返回当前对象中私有数组的首地址
}

template <class T>
Array<T>::operator const T * () const {
	return list;	//返回当前对象中私有数组的首地址
}

//取当前数组的大小
template <class T>
int Array<T>::getSize() const {
	return size;
}

// 将数组大小修改为sz
template <class T>
void Array<T>::resize(int sz) {
	assert(sz >= 0);	//检查sz是否非负
	if (sz == size)	//如果指定的大小与原有大小一样,什么也不做
		return;
	T* newList = new T [sz];	//申请新的数组内存
	int n = (sz < size) ? sz : size;	//将sz与size中较小的一个赋值给n
	//将原有数组中前n个元素复制到新数组中
	for (int i = 0; i < n; i++)
		newList[i] = list[i];
	delete[] list;		//删除原数组
	list = newList;	// 使list指向新数组
	size = sz;	//更新size
}
#endif  //ARRAY_H

//accumulator.h
#ifndef __ACCUMULATOR_H__
#define __ACCUMULATOR_H__
#include "date.h"

class Accumulator {	//将某个数值按日累加
private:
	Date lastDate;	//上次变更数值的时期
	double value;	//数值的当前值
	double sum;		//数值按日累加之和
public:
	//构造函数,date为开始累加的日期,value为初始值
	Accumulator(const Date &date, double value)
		: lastDate(date), value(value), sum(0) { }

	//获得到日期date的累加结果
	double getSum(const Date &date) const {
		return sum + value * (date - lastDate);
	}

	//在date将数值变更为value
	void change(const Date &date, double value) {
		sum = getSum(date);
		lastDate = date;
		this->value = value;
	}

	//初始化,将日期变为date,数值变为value,累加器清零
	void reset(const Date &date, double value) {
		lastDate = date;
		this->value = value;
		sum = 0;
	}
};

#endif //__ACCUMULATOR_H__

//account.h
#ifndef __ACCOUNT_H__
#define __ACCOUNT_H__
#include "date.h"
#include "accumulator.h"
#include <string>

class Account { //账户类
private:
	std::string id;	//帐号
	double balance;	//余额
	static double total; //所有账户的总金额
protected:
	//供派生类调用的构造函数,id为账户
	Account(const Date &date, const std::string &id);
	//记录一笔帐,date为日期,amount为金额,desc为说明
	void record(const Date &date, double amount, const std::string &desc);
	//报告错误信息
	void error(const std::string &msg) const;
public:
	const std::string &getId() const { return id; }
	double getBalance() const { return balance; }
	static double getTotal() { return total; }
	//存入现金,date为日期,amount为金额,desc为款项说明
	virtual void deposit(const Date &date, double amount, const std::string &desc) = 0;
	//取出现金,date为日期,amount为金额,desc为款项说明
	virtual void withdraw(const Date &date, double amount, const std::string &desc) = 0;
	//结算(计算利息、年费等),每月结算一次,date为结算日期
	virtual void settle(const Date &date) = 0;
	//显示账户信息
	virtual void show() const;
};

class SavingsAccount : public Account { //储蓄账户类
private:
	Accumulator acc;	//辅助计算利息的累加器
	double rate;		//存款的年利率
public:
	//构造函数
	SavingsAccount(const Date &date, const std::string &id, double rate);
	double getRate() const { return rate; }
	virtual void deposit(const Date &date, double amount, const std::string &desc);
	virtual void withdraw(const Date &date, double amount, const std::string &desc);
	virtual void settle(const Date &date);
};

class CreditAccount : public Account { //信用账户类
private:
	Accumulator acc;	//辅助计算利息的累加器
	double credit;		//信用额度
	double rate;		//欠款的日利率
	double fee;			//信用卡年费

	double getDebt() const {	//获得欠款额
		double balance = getBalance();
		return (balance < 0 ? balance : 0);
	}
public:
	//构造函数
	CreditAccount(const Date &date, const std::string &id, double credit, double rate, double fee);
	double getCredit() const { return credit; }
	double getRate() const { return rate; }
	double getFee() const { return fee; }
	double getAvailableCredit() const {	//获得可用信用
		if (getBalance() < 0) 
			return credit + getBalance();
		else
			return credit;
	}
	virtual void deposit(const Date &date, double amount, const std::string &desc);
	virtual void withdraw(const Date &date, double amount, const std::string &desc);
	virtual void settle(const Date &date);
	virtual void show() const;
};

#endif //__ACCOUNT_H__

//account.cpp
#include "account.h"
#include <cmath>
#include <iostream>
using namespace std;

double Account::total = 0;

//Account类的实现
Account::Account(const Date &date, const string &id)
	: id(id), balance(0) {
	date.show();
	cout << "\t#" << id << " created" << endl;
}

void Account::record(const Date &date, double amount, const string &desc) {
	amount = floor(amount * 100 + 0.5) / 100;	//保留小数点后两位
	balance += amount;
	total += amount;
	date.show();
	cout << "\t#" << id << "\t" << amount << "\t" << balance << "\t" << desc << endl;
}

void Account::show() const {
	cout << id << "\tBalance: " << balance;
}

void Account::error(const string &msg) const {
	cout << "Error(#" << id << "): " << msg << endl;
}

//SavingsAccount类相关成员函数的实现
SavingsAccount::SavingsAccount(const Date &date, const string &id, double rate)
	: Account(date, id), rate(rate), acc(date, 0) { }

void SavingsAccount::deposit(const Date &date, double amount, const string &desc) {
	record(date, amount, desc);
	acc.change(date, getBalance());
}

void SavingsAccount::withdraw(const Date &date, double amount, const string &desc) {
	if (amount > getBalance()) {
		error("not enough money");
	} else {
		record(date, -amount, desc);
		acc.change(date, getBalance());
	}
}

void SavingsAccount::settle(const Date &date) {
	if (date.getMonth() == 1) {	//每年的一月计算一次利息
		double interest = acc.getSum(date) * rate
			/ (date - Date(date.getYear() - 1, 1, 1));
		if (interest != 0)
			record(date, interest, "interest");
		acc.reset(date, getBalance());
	}
}

//CreditAccount类相关成员函数的实现
CreditAccount::CreditAccount(const Date& date, const string& id, double credit, double rate, double fee)
	: Account(date, id), credit(credit), rate(rate), fee(fee), acc(date, 0) { }

void CreditAccount::deposit(const Date &date, double amount, const string &desc) {
	record(date, amount, desc);
	acc.change(date, getDebt());
}

void CreditAccount::withdraw(const Date &date, double amount, const string &desc) {
	if (amount - getBalance() > credit) {
		error("not enough credit");
	} else {
		record(date, -amount, desc);
		acc.change(date, getDebt());
	}
}

void CreditAccount::settle(const Date &date) {
	double interest = acc.getSum(date) * rate;
	if (interest != 0)
		record(date, interest, "interest");
	if (date.getMonth() == 1)
		record(date, -fee, "annual fee");
	acc.reset(date, getDebt());
}

void CreditAccount::show() const {
	Account::show();
	cout << "\tAvailable credit:" << getAvailableCredit();
}

//9_16.cpp
#include "account.h"
#include "Array.h"
#include <iostream>
using namespace std;

int main() {
	Date date(2008, 11, 1);	//起始日期
	Array<Account *> accounts(0);	//创建账户数组,元素个数为0
	cout << "(a)add account (d)deposit (w)withdraw (s)show (c)change day (n)next month (e)exit" << endl;
	char cmd;
	do {
		//显示日期和总金额
		date.show();
		cout << "\tTotal: " << Account::getTotal() << "\tcommand> ";

		char type;
		int index, day;
		double amount, credit, rate, fee;
		string id, desc;
		Account* account;

		cin >> cmd;
		switch (cmd) {
		case 'a':	//增加账户
			cin >> type >> id;
			if (type == 's') {
				cin >> rate;
				account = new SavingsAccount(date, id, rate);
			} else {
				cin >> credit >> rate >> fee;
				account = new CreditAccount(date, id, credit, rate, fee);
			}
			accounts.resize(accounts.getSize() + 1);
			accounts[accounts.getSize() - 1] = account;
			break;
		case 'd':	//存入现金
			cin >> index >> amount;
			getline(cin, desc);
			accounts[index]->deposit(date, amount, desc);
			break;
		case 'w':	//取出现金
			cin >> index >> amount;
			getline(cin, desc);
			accounts[index]->withdraw(date, amount, desc);
			break;
		case 's':	//查询各账户信息
			for (int i = 0; i < accounts.getSize(); i++) {
				cout << "[" << i << "] ";
				accounts[i]->show();
				cout << endl;
			}
			break;
		case 'c':	//改变日期
			cin >> day;
			if (day < date.getDay())
				cout << "You cannot specify a previous day";
			else if (day > date.getMaxDay())
				cout << "Invalid day";
			else
				date = Date(date.getYear(), date.getMonth(), day);
			break;
		case 'n':	//进入下个月
			if (date.getMonth() == 12)
				date = Date(date.getYear() + 1, 1, 1);
			else
				date = Date(date.getYear(), date.getMonth() + 1, 1);
			for (int i = 0; i < accounts.getSize(); i++)
				accounts[i]->settle(date);
			break;
		}
	} while (cmd != 'e');

	for (int i = 0; i < accounts.getSize(); i++)
		delete accounts[i];

	return 0;
}

  • Java版本
package Bank9_16;

abstract class Account {
	private String id;//账号
	private double balance;//余额
	private static double total = 0;//所有账户的总金额
	//供派生类调用的构造函数,id为账户
	protected Account(final Date date,final String id) {
		this.id = id;
		this.balance = 0;
		date.show();
		System.out.println(id + " created");
	}
	//记录一笔账,date为日期,amount为金额,desc为说明
	protected void record(final Date date,double amount,final String desc) {
		balance += amount;
		total += amount;
		date.show();
		System.out.println(id + "  " + amount + "  " + balance + "  " + desc);
	}
	//报告错误信息
	protected void error(final String msg) {
		System.out.println("Error(#" + id + "):" + msg);
	}
	public String GetId() {
		return id;
	}
	public double GetBalance() {
		return balance;
	}
	public static double GetTotal() {
		return total;
	}
	public void show() {
		System.out.println(id + " Balance:" + balance);
	}
	//取出现金,date为日期,amount为金额,desc为款项说明
	abstract void withdraw(final Date date,double amount,final String desc);
	//存入现金,date为日期,amount为金额,desc为款项说明
	abstract void deposit(final Date date,double amount,final String desc);
	//结算(计算利息、年费等),每月结算一次,date为结算日期
	abstract void settle(final Date date);
}
class SavingsAccount extends Account{//储蓄账户类
	private Accumulator acc;//辅助计算利息的累加器
	private double rate;//存款的年利率
	//构造函数
	public SavingsAccount(final Date date,final String id,double rate) {
		super(date,id);
		this.rate = rate;
		acc = new Accumulator(date,0);
	}
	private double GatRate() {
		return rate;
	}
	//存入现金
	void deposit(final Date date,double amount,final String desc) {
		record(date,amount,desc);
		acc.change(date,GetBalance());
	}
	//取出现金
	void withdraw(final Date date,double amount,final String desc) {
		if(amount > GetBalance()) {
			error("not enough money");
		}
		else {
			record(date,-amount,desc);
			acc.change(date,GetBalance());
		}
	}
	//结算利息,每年1月1日调用一次该函数
	void settle(final Date date) {
		double interest = acc.GetSum(date)*rate/date.distance(new Date(date.getYear()-1,1,1)); //计算年息
		if(interest != 0) {
			record(date,interest,"interest");
		}
		acc.reset(date,GetBalance());
	}
}
//信用账户类
class CreditAccount extends Account{//信用账户类
	private Accumulator acc;//辅助计算利息的累加器
	private double credit;//信用额度
	private double rate;//欠款的日利率
	private double fee;//信用卡年费
	//获得欠款额
	private double GetDebt() {
		double balance = GetBalance();
		return (balance < 0 ? balance :0);
	}
	//构造函数
	public CreditAccount(final Date date,final String id,double credit,double rate,double fee) {
		super(date,id);
		this.credit = credit;
		this.rate = rate;
		this.fee = fee;
		acc = new Accumulator(date,0);
	}
	public double GetCredit() {
		return credit;
	}
	public double GteRate() {
		return rate;
	}
	public double GetFee() {
		return fee;
	}
	//获得可用信用
	public double GetAvailableCredit() {
		if(GetBalance() < 0) {
			return credit + GetBalance();
		}
		else {
			return credit;
		}
	}
	//存入现金
	void deposit(final Date date,double amount,final String desc) {
		record(date,amount,desc);
		acc.change(date,GetDebt());
	}
	//取出现金
	void withdraw(final Date date,double amount,final String desc) {
		if(amount - GetBalance() > credit) {
			error("not enough credit");
		}
		else {
			record(date,-amount,desc);
			acc.change(date,GetDebt());
		}
	}
	//结算利息和年费,每月1日调用一次该函数
	void settle(final Date date) {
		double interest = acc.GetSum(date)*rate;
		if(interest != 0) {
			record(date,interest,"interest");
		}
		if(date.getMonth() == 1) {
			record(date,-fee,"annual fee");
		}
		acc.reset(date,GetDebt());
	}
	public void show() {
		super.show();
		System.out.println("Available credit:" + GetAvailableCredit());
	}
}

package Bank9_16;

public class Accumulator {//将某个数值按日累加
	private Date lastDate;//上次变更数值的时期
	private double value;//数值的当前值
	private double sum;//数值的累加之和
	//构造函数,date为开始累加的日期,value为初始值
	public Accumulator(final Date date,double value) {
		this.lastDate = date;
		this.value = value;
		this.sum = 0;
	}
	//获得到日期date的累加结果
	public double GetSum(final Date date) {
		return sum + value * date.distance(lastDate);
	}
	//在date将数值变更为value
	public void change(final Date date,double value) {
		sum = GetSum(date);
		lastDate = date;
		this.value = value;
	}
	//初始化,将日期变为date,数值变为value,累加器清零
	public void reset(final Date date,double value) {
		lastDate = date;
		this.value = value;
		sum = 0;
	}
}

package Bank9_16;

public class Date {
	private int year;//年
	private int month;//月
	private int day;//日
	private int totalDays;//该日期是从公元元年1月1日开始的第几天
	private int[] a = new int[]{0,31,59,90,120,151,181,212,243,273,304,334,365};
	//存储平年中某个月1日之前有多少天
	//构造函数
	public Date(int year,int month,int day) {
		this.year = year;
		this.month = month;
		this.day = day;
		if(day <= 0 || day > this.getMaxDay()) {
			System.out.println("Invalid date:");
			this.show();
			System.exit(1);
		}
		int years = year - 1;
		totalDays = years * 365 + years/4 - years/100 + years/400 + a[month-1]+day;
		if(this.LeapYear() == true && month >2) {
			totalDays++;
		}
	}
	//判断是否是闰年
	public boolean LeapYear() {
		if((year%4 == 0 && year%100 != 0)||(year%400 ==0)) {
			return true;
		}
		else {
			return false;
		}
	}
	//求某个月的天数
	public int getMaxDay() {
		if(this.LeapYear() == true && month == 2) {
			return 29;
		}
		else {
			return a[month]-a[month-1];
		}
	}
	//输出
	public void show() {
		System.out.println(year + "-" + month + "-" +day);
	}
	//计算两个日期之间相差的天数
	public int distance(Date date) {
		return totalDays - date.totalDays;
	}
	public int getYear() {
		return year;
	}
	public int getMonth() {
		return month;
	}
	public int getDay() {
		return day;
	}
}

package Bank9_16;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;

public class Run {
	public static void main(String[] args) throws IOException{
		Date date = new Date(2008, 11, 1);	//起始日期
		ArrayList<Account> accounts = new ArrayList<Account>(0);	//创建账户数组,元素个数为0
		System.out.println("(a)add account (d)deposit (w)withdraw (s)show (c)change day (n)next month (e)exit");
		char cmd;
		Scanner in = new Scanner(System.in);
		do {
			//显示日期和总金额
			date.show();
			System.out.println("\tTotal:" + Account.GetTotal() + "\tcommand>");
			char type;
			int index, day;
			double amount, credit, rate, fee;
			String id, desc;
			Account account;
			cmd = (char)System.in.read();
			switch (cmd) {
			case 'a':	//增加账户
				type = (char)System.in.read();
				id = in.next();
				if (type == 's') {
					rate = in.nextDouble();
					account = new SavingsAccount(date, id, rate);
				} else {
					credit = in.nextDouble();
					rate = in.nextDouble();
					fee = in.nextDouble();
					account = new CreditAccount(date, id, credit, rate, fee);
				}
				accounts.add(account);
				accounts.trimToSize();
				break;
			case 'd':	//存入现金
				index = in.nextInt();
				amount = in.nextDouble();
				desc = in.nextLine();
				accounts.get(index).deposit(date, amount, desc);
				break;
			case 'w':	//取出现金
				index = in.nextInt();
				amount = in.nextDouble();
				desc = in.nextLine();				
				accounts.get(index).withdraw(date, amount, desc);
				break;
			case 's':	//查询各账户信息
				for (int i = 0; i < accounts.size(); i++) {
					System.out.println("[" + i + "]");
					accounts.get(i).show();
				}
				break;
			case 'c':	//改变日期
				day = in.nextInt();
				if (day < date.getDay())
					System.out.println("You cannot specify a previous day");
				else if (day > date.getMaxDay())
					System.out.println("Invalid day");
				else
					date = new Date(date.getYear(), date.getMonth(), day);
				break;
			case 'n':	//进入下个月
				if (date.getMonth() == 12)
					date = new Date(date.getYear() + 1, 1, 1);
				else
					date = new Date(date.getYear(), date.getMonth() + 1, 1);
				for (int i = 0; i < accounts.size(); i++)
					accounts.get(i).settle(date);
				break;
			}
		} while (cmd != 'e');
		for (int i = 0; i < accounts.size(); i++)
			accounts.remove(i);
	}
}

  • 总结反思
    这一个版本中,C语言中使用容器代替数组,而Java版本的代码中,使用"import java.util.ArrayList; import java.util.Scanner;"可实现这一功能。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
图像识别技术在病虫害检测中的应用是一个快速发展的领域,它结合了计算机视觉和机器学习算法来自动识别和分类植物上的病虫害。以下是这一技术的一些关键步骤和组成部分: 1. **数据收集**:首先需要收集大量的植物图像数据,这些数据包括健康植物的图像以及受不同病虫害影响的植物图像。 2. **图像预处理**:对收集到的图像进行处理,以提高后续分析的准确性。这可能包括调整亮度、对比度、去噪、裁剪、缩放等。 3. **特征提取**:从图像中提取有助于识别病虫害的特征。这些特征可能包括颜色、纹理、形状、边缘等。 4. **模型训练**:使用机器学习算法(如支持向量机、随机森林、卷积神经网络等)来训练模型。训练过程中,算法会学习如何根据提取的特征来识别不同的病虫害。 5. **模型验证和测试**:在独立的测试集上验证模型的性能,以确保其准确性和泛化能力。 6. **部署和应用**:将训练好的模型部署到实际的病虫害检测系统中,可以是移动应用、网页服务或集成到智能农业设备中。 7. **实时监测**:在实际应用中,系统可以实时接收植物图像,并快速给出病虫害的检测结果。 8. **持续学习**:随着时间的推移,系统可以不断学习新的病虫害样本,以提高其识别能力。 9. **用户界面**:为了方便用户使用,通常会有一个用户友好的界面,显示检测结果,并提供进一步的指导或建议。 这项技术的优势在于它可以快速、准确地识别出病虫害,甚至在早期阶段就能发现问题,从而及时采取措施。此外,它还可以减少对化学农药的依赖,支持可持续农业发展。随着技术的不断进步,图像识别在病虫害检测中的应用将越来越广泛。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值