c语言入门教程–-6循环语句 c语言提供了以下几种循环类型。while循环for 循环do…while 循环 while循环 #include <stdio.h> int main () { /* 局部变量定义 */ int a = 10; /* while 循环执行 */ while( a < 2 ...
分类:
编程语言 时间:
2021-04-13 12:12:17
阅读次数:
0
一、Q:Error connecting to database: Access denied for user ‘zabbix’ @ ‘localhost’ to database ‘zabbix’(PASSWORD:YES) 浏览器输入http://ServerIP/zabbix 查看日志 ta ...
分类:
其他好文 时间:
2021-04-12 12:43:00
阅读次数:
0
使用mysql-8.0.23版的,创建用户屡屡失败,最终靠万能的度娘解决: 已知版本信息: C:\Users\Administrator\Desktop\mysql-8.0.23-winx64\mysql-8.0.23-winx64\bin>mysql -Vmysql Ver 8.0.23 for ...
分类:
数据库 时间:
2021-04-12 12:20:25
阅读次数:
0
springboot常用注解 1. @SpringBootApplication 这个注解是 Spring Boot 项目的基石,创建 SpringBoot 项目之后会默认在主类加上。 @SpringBootApplication看作是 @Configuration、@EnableAutoConfi ...
分类:
编程语言 时间:
2021-04-12 12:19:37
阅读次数:
0
StreamWriter and UTF-8 Byte Order Marks I'm having an issue with StreamWriter and Byte Order Marks. The documentation seems to state that the Encoding ...
分类:
其他好文 时间:
2021-04-12 12:02:46
阅读次数:
0
sudo是linux系统管理指令,是允许系统管理员让普通用户执行一些或者全部的root命令的一个工具,如halt、reboot、su等等。 登录到root用户 将用户加入sudoers visudo //或者vi /etc/sudoers 移动光标,到一行root ALL=(ALL) ALL的下一行 ...
分类:
其他好文 时间:
2021-04-10 13:05:39
阅读次数:
0
Verifying an Alien Dictionary (E) 题目 In an alien language, surprisingly they also use english lowercase letters, but possibly in a different order. Th ...
分类:
其他好文 时间:
2021-04-10 12:58:26
阅读次数:
0
//获取当前运行程序上一级目录PDF文件夹 private string txtPath = System.AppDomain.CurrentDomain.BaseDirectory + "PDF\\"; //如果该文件下没有PDF文件夹就创建该文件夹 if (!Directory.Exists(t ...
分类:
其他好文 时间:
2021-04-10 12:52:27
阅读次数:
0
树莓派WIFI设置 在“开始使用树莓派”中,我们在boot根目录下创wpa_supplicant.conf文件,实现了第一次连接wifi。以后开机后,树莓派会自动连接那个wifi。如果想要连接多个wifi需要修个如下配置。 sudo vim /etc/wpa_supplicant/wap_suppl ...
分类:
其他好文 时间:
2021-04-09 13:40:31
阅读次数:
0
获取 itextsharp 包 files 图片文件路径列表 pdfFileName 输出的 pdf文件 public bool MergeFileToPDF(List<string> files,string pdfFileName) { iTextSharp.text.Document docu ...