摘要:
(容斥原理)1到6内 被2、3整除的数 6/2+6/3-6/(2*3) #include <iostream> using namespace std; const int N=20; typedef long long LL;//1e9*1e9 爆int int p[N]; int main() 阅读全文
摘要:
1.查看当前所有的数据库 show databases; 2.打开指定的库 use 库名; use test; 3查看当前的库 select database(); 4.查看当前库的所有表 show tables; 5.查看其它库的所有表 show tables from 库名; show tabl 阅读全文