水~。 注意右半部为$0$的情况。 int main() { int T; cin>>T; while(T--) { string s; cin>>s; string a=s.substr(0,s.size()/2),b=s.substr(s.size()/2); int ts=stoi(s),ta ...
分类:
其他好文 时间:
2021-03-04 13:05:25
阅读次数:
0
1、if else语句 //单一条件语句语法:if(布尔表达式){ 语句块;} //二选一条件语句语法: if(布尔表达式){ 语句块1;}else{ 语句块2;}//多选一条件语句语法:if(布尔表达式1){ 语句块1;}else if(布尔表达式2){ 语句块1;} ...else { 语句块n ...
分类:
其他好文 时间:
2021-03-03 12:20:05
阅读次数:
0
1,将id列放在第一列 alter table cqc_xa.cqc_xa_diff_case modify id int unsigned auto_increment first; 2,增加自增id alter table test.student add column indexxx int( ...
分类:
数据库 时间:
2021-03-03 12:17:55
阅读次数:
0
目录 一、Kafka监控的几个指标 二、查看zookeeper配置 三、查看kafka配置 四、查看kafka的group name 五、查看kafka的topic_name 六、修改zabbix配置文件 七、创建监控脚本 八、给脚本和对应文件权限 九、重启zabbix 十、监控上增加3个键值 正文 ...
分类:
其他好文 时间:
2021-03-03 12:11:41
阅读次数:
0
查看数据库 show databases; use 数据库名; show tables; //显示数据库的表名describe 表名; //显示某表的字段, 建表模板 ...
分类:
数据库 时间:
2021-03-03 12:05:33
阅读次数:
0
axios是一个库,并不是vue中的第三方插件,使用时不能通过Vue.use()安装插件 https://github.com/axios/axios 需要在原型上进行绑定: https://www.kancloud.cn/yunye/axios/234845 $cnpm install --sav ...
分类:
移动开发 时间:
2021-03-03 11:53:36
阅读次数:
0
在使用Image模块的时候,出现一个错误。 ValueError: Unknown resampling filter (50). Use Image.NEAREST (0), Image.LANCZOS (1), Image.BILINEAR (2), Image.BICUBIC (3), Ima ...
分类:
编程语言 时间:
2021-03-03 11:46:51
阅读次数:
0
1 1 import pymysql 2 2 3 3 db = pymysql.connect(host='localhost', user='root', password='123456', database='jddj',port=3306) 4 4 cursor = db.cursor() ...
分类:
数据库 时间:
2021-03-02 12:38:55
阅读次数:
0
系列文章列表,点击展示/隐藏 系列教程一目录:.netcore+vue 前后端分离Demo1Demo2视频教程1视频教程2Code 系列教程二目录:DDD领域驱动设计Demo Code 视频教程 系列教程三目录:Nuxt.js TiBug系统Demo Code 系列教程四目录:VueAdmin 后台 ...
分类:
其他好文 时间:
2021-03-02 12:08:14
阅读次数:
0
<style> div{ width: 200px; height: 20px; background-color: red; } ul{ display: none; margin: 0; padding: 0; width: 200px; background-color: #ccc; } </ ...
分类:
Web程序 时间:
2021-03-01 14:07:32
阅读次数:
0