""" 学生管理系统 1.添加学生信息 2.删除学生信息 3.修改学生信息 4.查找学生信息 5.退出系统 """ import time def print_info(): print("=" * 30) print("欢迎使用学生管理系统") print("1. 添加学生信息") print(" ...
分类:
其他好文 时间:
2020-10-29 09:49:18
阅读次数:
17
view log vim -- filename in vim :set number 。this can show line number cursor position as reference point ?:look up /:look down ...
分类:
系统相关 时间:
2020-10-29 09:48:46
阅读次数:
31
输出n的阶乘#include<stdio.h>#include<Windows.h>#pragmawarning(disable:4996)intFact(intn){intret=1;for(inti=1;i<=n;i++){ret*=i;}returnret;}intmain(){intn=5;intresult=Fact(n);printf("%d\n
分类:
移动开发 时间:
2020-10-27 11:34:27
阅读次数:
31
1、索引的分类 普通索引(单列索引):一个索引只包含单个列,一个表可以有多个; create index idx_brand_name on brand(name); alter table brand add index idx_brand_name(name); show index from ...
分类:
数据库 时间:
2020-10-27 11:13:40
阅读次数:
23
第一步:换清华源(.condarc),需要注意是http不是https channels: - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ - http://mirrors.tuna.tsinghua.edu.cn/anaconda ...
分类:
其他好文 时间:
2020-10-22 22:37:06
阅读次数:
25
题意简述:求对于树上每个点 \(x\) ,包含它的链的并集的大小之和,也可描述成,求对于树上每个点 \(x\) ,它能够到达的点的个数之和。 不难发现,对于点 \(x\) 而言,通过树上的路径,它能够到达的点一定构成一棵树。并且这棵树上一定含有包含 \(x\) 点的 \(s_i,t_i\) 。那么也 ...
分类:
编程语言 时间:
2020-10-18 10:07:36
阅读次数:
28
查看liunx系统基本信息 lscpu cpu查看 free -h 内存查看 lsblk 硬盘查看 init 3 关闭可视化窗口 init 6 重启 reboot 重启 host name -i 查看 ip ip addr show 查看网卡 uname -r 查看内核 cat /etc/redha ...
分类:
其他好文 时间:
2020-10-18 09:48:30
阅读次数:
24
很多东西说真的,不用了就忘了,而我绝对是忘的最快的那个,这次又遇到了这个linux中计算内存的这个情况先说明,如果是centos7的,那就比较舒服了看的,直接total-used=buffer+cache就完事了如果是centos6的呢,free-m的时候会出现-/+buffer/cache这种的,也就是会多出一行,实际内存占用:used-buffers-cached即total-free-buf
分类:
系统相关 时间:
2020-10-12 20:44:37
阅读次数:
35
题:http://acm.hdu.edu.cn/showproblem.php?pid=3949 分析:对查询的k进行二进制分解位上线性基的异或和 #include<bits/stdc++.h> using namespace std; #define pb push_back typedef lo ...
分类:
其他好文 时间:
2020-10-12 20:30:09
阅读次数:
29
Mysql为数据库管理系统(DBMS) 使用cmd登录: 先输入Mysql -h ip地址 -P 端口号 -u root -p,然后输入密码。 DDL:数据库定义语言。 DML:数据库操纵语言。 DQL:数据库查询语言。 DCL:数据库控制语言。 ##DDL: 查看已有数据库 show databa ...
分类:
数据库 时间:
2020-10-10 17:44:10
阅读次数:
23