问题描述: 代码: 1 //乘积的末三位 2 #include<stdio.h> 3 #include<ctype.h> 4 #define MAXN 1000 5 char s[MAXN]; 6 int main() 7 { 8 fgets(s,sizeof(s),stdin); 9 int i= ...
分类:
其他好文 时间:
2020-04-05 15:12:35
阅读次数:
77
#include <stdio.h> #include <stdlib.h> #include <ctype.h> typedef struct listNode { int data; struct listNode *nextPtr; }LISTNODE; void instructions ( ...
分类:
其他好文 时间:
2020-03-28 14:59:45
阅读次数:
76
题目链接:6-1 单链表逆转 (20分) 方式一:递归逆置单链表 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <math.h> 4 #include <string.h> 5 #include <ctype.h> 6 7 #define ...
分类:
其他好文 时间:
2020-03-28 09:13:17
阅读次数:
286
本憨憨忘了好几次了,这次一定记住他们! 首先大小写相差32.转换的话自己写函数也是可以写出来的. 1.字母 如果是字母转的话,用toupper(),tolower() 头文件是<ctype.h> 1 char a='a'; 2 char b; 3 b=toupper(a); 不过要注意是有返回值的. ...
分类:
编程语言 时间:
2020-03-14 22:08:00
阅读次数:
118
1)升级出问题,ssh登录系统显示 -bash: warning: setlocale: LC_CTYPE: cannot change locale (zh_CN.UTF-8): No such file or directory -bash: warning: setlocale: LC_COL ...
分类:
系统相关 时间:
2020-02-01 00:25:24
阅读次数:
109
简单的切换系统语言, 并不能很好的支持中文, 比如wps, 永中office等无法输入中文. 首先, 修改配置. kagome@kagome-pc:~$ sudo vi /etc/environment 追加如下内容: export LC_CTYPE="zh_CN.UTF-8" export LC_ ...
分类:
系统相关 时间:
2020-01-24 00:16:55
阅读次数:
113
重读C Primer Plus ,查漏补缺 重读C Primer Plus,记录遗漏的、未掌握的、不清楚的知识点 分支和跳转 1、ctype.h头文件里包含了一些列用于字符判断的函数,包括判断数字、大小写字母,控制字符,可打印字符等一些列函数以及转换字母大小写的字符映射函数。 2、C99标准要求编译 ...
分类:
其他好文 时间:
2020-01-06 23:14:45
阅读次数:
142
pve命令,如下报错 perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LC_CTYPE ...
分类:
其他好文 时间:
2019-12-28 13:02:06
阅读次数:
112
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #define ERROR 0 #define OK 1 typedef struct Stack { int *elements; int max_size, top_index; ...
分类:
其他好文 时间:
2019-12-27 13:19:25
阅读次数:
64
第五章 5.2常见的Web应用安全漏洞 5.2.1SQL注入漏洞 SQL注入漏洞形成的原因:用户输入的数据被SQL解释器执行 防护手段: 参数类型检测:int intval;bool is-numeric;ctype-digit 参数长度检测 危险参数过滤 参数化查询 5.2.2文件上传漏洞 原理: ...
分类:
其他好文 时间:
2019-12-18 20:17:35
阅读次数:
143