码迷,mamicode.com
首页 >  
搜索关键字:price    ( 2479个结果
AtCoder Regular Contest 118
AtCoder Regular Contest 118 A - Tax Included Price int main() { IOS; ll k, c; cin >> n >> k; c = (100 * k - 1) / n + 1; cout << (n + 100) * c / 100 - ...
分类:其他好文   时间:2021-05-24 04:22:14    阅读次数:0
豆瓣图书信息爬虫
一、定义数据库数据模型 create database doubandb; create TABLE books( id bigint(20) unsigned NOT NULL COMMENT ID号, title varchar(255) DEFAULT NULL COMMENT 书名, aut ...
分类:其他好文   时间:2021-04-28 11:43:58    阅读次数:0
【设计模式】设计模式六大原则以及常见设计模式
一、设计模式六大原则 1.开闭原则:对扩展开放,对修改关闭,。 例子: course类里面有price字段,getPrice方法,如果想要打折促销,就需要改变price字段或者getPrice方法。 我们可以新建一个CourseCount类继承course类,里面的getPrice方法调用父类的ge ...
分类:其他好文   时间:2021-04-19 14:47:20    阅读次数:0
Best Time to Buy and Sell Stock
暴力求解法,直接遍历求最大值 class Solution { public: int maxProfit(vector<int>& prices) { int maxprofit=0; for(int i=0;i<prices.size();i++) { for(int j=i+1;j<price ...
分类:其他好文   时间:2021-04-05 11:41:37    阅读次数:0
jsp第三次
<%@ page language="java" contentType="text/html" import="java.util.*" pageEncoding="utf-8"%> <%@ page import="java.util.regex.Pattern"%> <%@ page impo ...
分类:Web程序   时间:2021-03-30 13:13:02    阅读次数:0
程序设计入门(C语言) - 翁恺
#第一周 程序设计与C语言 #include <stdio.h> int main() { printf("%d\n",12+34); return 0; } %d表示后面有一个整数要输出在这个位置上 #第二周 计算 ##2.1 变量 scanf("%d,&price"); 要求scanf()这个函 ...
分类:编程语言   时间:2021-03-16 13:23:53    阅读次数:0
THIS关键字
1.使用this关键字调用本类中的属性。 例如:构造方法或者set方法 public class Book { private String name; private float price; private Person person; private Person child; public ...
分类:其他好文   时间:2021-03-06 14:59:45    阅读次数:0
kaggle教程之特征工程
特征工程 特征工程可以有效地改善模型效果,减少训练时间。 简单的方法包括: 1. 进行特征转换 2. 增加语义特征 A Guiding Principle of Feature Engineering For a feature to be useful, it must have a relati ...
分类:其他好文   时间:2021-03-04 13:24:43    阅读次数:0
1106 Lowest Price in Supply Chain (25 分)
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer ...
分类:其他好文   时间:2021-02-24 13:20:28    阅读次数:0
1090 Highest Price in Supply Chain (25 分)
A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer ...
分类:其他好文   时间:2021-02-24 13:16:47    阅读次数:0
2479条   上一页 1 2 3 4 ... 248 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!