码迷,mamicode.com
首页 >  
搜索关键字:amount    ( 1179个结果
第12章第一题
#_author:Ltx#date:2019/12/16import timeimport randomclass account: ''' 1.存款功能 2.取款功能 3.打印交易详情 3.1--每次交易的时间 3.2--存款或者取款的金额 3.3每次交易后的金额 ''' def __init__ ...
分类:其他好文   时间:2019-12-16 15:05:06    阅读次数:116
算法设计与分析-Week12
题目描述You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you... ...
分类:编程语言   时间:2019-12-14 23:01:40    阅读次数:130
ES6 - 解构(数组和对象)
解构对象 / 解构:快捷,方便 对象解构 / { var expense = { type: "es6", amount: "45" }; //1.ES5 // var type = expense.type; // var amount = expense.amount; // console.l ...
分类:编程语言   时间:2019-12-12 23:46:00    阅读次数:213
Math 309 Extra-Credit
Math 309 Extra-Credit Project 4 Fall, 2019The amount of extra-credit will depend on the overall quality of your work. Youmust submit a formal Report t ...
分类:其他好文   时间:2019-12-11 13:09:11    阅读次数:100
搜索1
查找美分对应的英文单词 1、用两个数组 1 #include<stdio.h> 2 3 int amount[] = { 1,5,10,25,50 }; 4 char* name[] = { "penny","mickel","dimme","quarter","half-dollar" }; 5 ...
分类:其他好文   时间:2019-12-10 11:36:06    阅读次数:181
Leetcode solution 322: Coin Change
Problem Statement You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of ...
分类:其他好文   时间:2019-12-08 10:43:15    阅读次数:90
[Dynamic Programming] 198. House Robber
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping yo ...
分类:其他好文   时间:2019-12-02 17:14:02    阅读次数:73
JAVA基础学习(2)之判断
2判断 2.1比较 2.1.1比较 System.out.println(amount>=10);输出的值为true或false 2.1.2关系运算 优先级 <算术运算 >赋值运算 其中==和!=比其他优先级低 从左往右 浮点数比较 double a=1.0; double b=0.1+0.1+0. ...
分类:编程语言   时间:2019-12-02 16:38:15    阅读次数:103
mysql设计
mysql设计 # 日线行情 CREATE TABLE daily_data ( ts_code char(9) COMMENT "ts代码", trade_date DATE COMMENT "交易日期", open FLOAT(10) COMMENT "开盘价", close FLOAT(10) ...
分类:数据库   时间:2019-11-24 09:54:44    阅读次数:70
[Leetcode] 322. Coin Change
原题链接 You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that yo ...
分类:其他好文   时间:2019-11-22 01:00:21    阅读次数:98
1179条   上一页 1 ... 10 11 12 13 14 ... 118 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!