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
暴力求解法,直接遍历求最大值 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
<%@ 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语言 #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
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
特征工程 特征工程可以有效地改善模型效果,减少训练时间。 简单的方法包括: 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
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
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