There are n cities connected by m flights. Each flight starts from city u and arrives at v with a price w. Now given all the cities and flights, toget ...
分类:
其他好文 时间:
2020-08-05 10:29:42
阅读次数:
73
// 1. 数据库数据 // { // "orders": { // 集合(表名) // "data": [ // 数据 // {"_id":4,"book":"novel 1","price":30,"quantity":2}, // {"_id":5,"book":"science 1" ...
分类:
数据库 时间:
2020-07-28 13:56:39
阅读次数:
80
使用表别名 SQL允许给表取别名, 这样做的理由是 缩短SQL语句 允许在单条SELECT语句中多次使用相同的表 MariaDB [crashcourse]> SELECT cust_name, cust_contact FROM customers AS c, orders AS o, order ...
分类:
数据库 时间:
2020-07-28 00:18:58
阅读次数:
103
一.什么是面向对象 1.在Java程序员眼中,只要是一个例子,一个需求,都能给他变成一个类 i.汽车 汽车的属性有大小,型号,价格,品质 汽车的行为有,前进,后退,刹车,左拐,右拐等 public class Car{ String size; String price; String qualit ...
分类:
编程语言 时间:
2020-07-26 00:23:29
阅读次数:
73
1,完成一个商城购物车的程序。要求:1,用户先给自己的账户充钱:比如先充3000元。2.商品内容为:goods = [ {'name':'苹果','price':10}, {'name':'梨子','price':12}, {'name':'香蕉','price':15}, {'name':'橘子' ...
分类:
其他好文 时间:
2020-07-22 13:50:44
阅读次数:
76
表与序列化类准备 models.py from django.db import models # Create your models here. class Book(models.Model): name = models.CharField(max_length=32) price = mo ...
分类:
其他好文 时间:
2020-07-19 23:27:00
阅读次数:
62
JavaScript高阶函数的使用 JS中的for循环 /* 普通的for循环 */ for (let i = 0; i < this.books.length; i++) { total += this.books[i].count * this.books[i].price; } /* let ...
分类:
Web程序 时间:
2020-07-18 15:29:53
阅读次数:
75
#include <stdio.h> int main() { int price=0; //定义了一个int类型的变量,初始值是0 printf("请输入金额(元):"); scanf("%d",&price); //通过键盘给程序中的变量赋值 //参数1:输入控制符--将键盘输入的字符串转化为指 ...
分类:
其他好文 时间:
2020-07-17 09:36:17
阅读次数:
89
1.今天学习了类和对象:理解,定义,对象的使用,成员变量和局部变量,封装,构造方法 /* 手机类: 类名: 手机(Phone) 成员变量: 品牌(brand) 价格(price) 成员方法: 打电话(call) 发短信(sendMessage) */public class Phone { //成员 ...
分类:
其他好文 时间:
2020-07-14 00:55:59
阅读次数:
99
數組 有序的列表,裏面存儲了若干個無序的元素;是一個緊密型結構 元素被存儲在列表中,這個數據就是元素,簡稱元 從列表中獲取這個元素的方法,使用數組名[下標]就可以得到這個元素,我們把這種方式叫做下標變量 對象: 與對象的區別在於,對象是鬆散型結構,是鍵值對存儲; 儅刪除一個元素時,對象的其他值不會發 ...
分类:
Web程序 时间:
2020-07-13 19:58:59
阅读次数:
62