博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#方法定义和调用-2
阅读量:5368 次
发布时间:2019-06-15

本文共 1496 字,大约阅读时间需要 4 分钟。

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{    class Qian    {        private decimal yuanlai;        private string name;        public Qian(string name)        {            this.yuanlai = 0;            this.name = name;            Print("我的钱数", 0);        }        public bool Desposit(decimal jine)        {            if (jine <= 0)                return false;            yuanlai += jine;            Print("借了别人",jine);            return true;        }        public bool WithDraw(decimal jine)        {            if (jine > yuanlai || jine <= 0)                return false;            yuanlai -= jine;            Print("借给别人", jine);            return true;        }        private void Print(string operation, decimal jine)        {            Console.WriteLine("我的名字:{0}",name);            Console.WriteLine("{0}:{1}",operation,jine);            Console.WriteLine("现在的钱:{0}",yuanlai);            Console.WriteLine("============================");            Console.ReadKey();        }    }    class Program    {        static void Main(string[] args)        {            Qian q = new Qian("我是LT");            bool succed = q.Desposit(10000);            if (!succed)                Console.WriteLine("他不借给我钱!");            succed = q.WithDraw(50000);            if (!succed)                Console.WriteLine("我不借给他钱!");            Console.ReadKey();        }    }}

 

转载于:https://www.cnblogs.com/blogofwyl/p/4307472.html

你可能感兴趣的文章
机器学习实战-----八大分类器识别树叶带源码
查看>>
eclipse git 新的文件没有add index选项
查看>>
java 泛型
查看>>
VC NetShareAdd的用法
查看>>
java web项目中后台控制层对参数进行自定义验证 类 Pattern
查看>>
图论学习一之basic
查看>>
Java的Array和ArrayList
查看>>
记录Ubuntu 16.04 安装Docker CE
查看>>
安东尼奥·维瓦尔第——巴洛克音乐的奇葩
查看>>
pandas的增删改查
查看>>
HDU 5933/思维
查看>>
字节对齐
查看>>
Design Tic-Tac Toe
查看>>
SQL中的去重操作
查看>>
uva 12097 - Pie(二分,4级)
查看>>
mongodb索引
查看>>
nginx源码学习资源(不断更新)
查看>>
【bzoj2882】工艺 后缀自动机+STL-map
查看>>
[redis] redis
查看>>
Linux的加密认证功能以及openssl详解
查看>>