码迷,mamicode.com
首页 >  
搜索关键字:bank    ( 670个结果
程序设计项目实训——银行储蓄系统
注:本程序采用多文件组织的方法 Headers:bank.h ?/* *版权所有 (c) 2015, 烟台大学计算机与控制工程学院. *All rights reserved. *文件名称: main.cpp *作者:陆云杰 *完成日期:2015年7月15日 *版本号:v1.0 *内容摘要:对所有类,函数进行了定义 *修改内容:1.增加了一个Day类用于记录开户以及进行存取款转...
分类:其他好文   时间:2015-07-17 10:04:32    阅读次数:183
learning sql (second edition) script
create database bank;use bank;/* begin table creation */create table department (dept_id smallint unsigned not null auto_increment, name varchar(20) ....
分类:数据库   时间:2015-07-16 19:28:25    阅读次数:123
c++课程实训 银行储蓄系统
基本要求:定义了用户类(User)和银行类(Bank),用成员函数实现各种功能,多文件组织程序,能用文本文件存取数据(如示例中给出的技术);   拓展方向: 序号 加分项目 细       则 1 改变Bank类中用户信息的存储方式 用对象的指针数组存储(User *user[up...
分类:编程语言   时间:2015-07-16 12:06:33    阅读次数:237
Football or polo?
原文 The Wayle is a small river that cuts across the park near my home. I like sitting by the Wayle on fine afternoons. It was warm last Sunday, so I went and sat on the river bank as usual. Some c...
分类:其他好文   时间:2015-07-13 20:47:13    阅读次数:153
Use the Right Algorithm and Data Structure
Use the Right Algorithm and Data StructureJan Christiaan “JC” van WinkelA big bank with many branch offices complained that the new computers it had bought for the tellers were too slow. This was in th...
分类:其他好文   时间:2015-07-13 10:25:10    阅读次数:129
小额绑卡
$(function(){ //版本控制 var revisionControl = false, //遮罩 shadow = $('#shadow_win'), //是否支持地区 isArea = '', //银行卡号INPUT bankNumberInput = $('#bank_number'...
分类:其他好文   时间:2015-07-06 14:01:14    阅读次数:131
One good turn deserves another
原文 I was having dinner at a restaurant when Tony Steele came in. Tony worked in a lawyer‘s office years ago, but he is now working at a bank. He gets a good salary, but he always borrows money fr...
分类:其他好文   时间:2015-07-01 14:21:57    阅读次数:130
进阶第21课时,实践,简易银行系统开发第四版
/* *Copyright(c) 2015/6/3 CSDN博客 *All rights reserved. *文件名称:main.c *作 者:金叶 *完成日期:2015/6/3 *版本号:V1.0 *问题描述:小型银行应用程序 *程序输出: */ #include #include "bank.h" int main() { if (ipass()==1) { ...
分类:其他好文   时间:2015-06-29 22:20:56    阅读次数:136
hdu 1114 Piggy-Bank
求最高价值:必须准确填写背包,时除了dp[0]为0其他dp[1..V]均设为-∞ 求最小价值:要求恰好装满背包,那么在初始化时除了dp[0]为0其他dp[1..V]均设为∞注意事项:题目要求要“恰好装满”,所以初始化时。除dp[0]赋值为零外其他的dp[i]都赋值为+∞。由于题目是求最小值。若为求最...
分类:其他好文   时间:2015-06-21 11:46:27    阅读次数:69
策略模式代替大量的if else
原代码public class Example { public Double calRecharge(Double charge, RechargeTypeEnum type) { if (type.equals(RechargeTypeEnum.E_BANK)) { ...
分类:其他好文   时间:2015-06-18 16:56:21    阅读次数:262
670条   上一页 1 ... 48 49 50 51 52 ... 67 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!