字符串 | 函数 | 描述| | | :| | add() |对两个数组的逐个字符串元素进行连接 | |multiply() |返回按元素多重连接后的字符串 |center() |居中字符串 |capitalize() |将字符串第一个字母转换为大写 |title() |将字符串的每个单词的第一个字 ...
分类:
其他好文 时间:
2020-01-20 22:41:29
阅读次数:
87
#include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int maxn = 40010;//最大学生人数 bool check(char c){ if(c >= '0' && c< ...
分类:
编程语言 时间:
2020-01-17 00:23:47
阅读次数:
155
转:https://www.cnblogs.com/crazymagic/articles/9752287.html Python操控Excel之读取 我们在python中引入openpyxl模块来操控excel文件。一个以.xlsx为扩张名的excel文件打开后叫工作簿workbook,每个工作簿 ...
分类:
编程语言 时间:
2020-01-09 00:53:38
阅读次数:
111
Part 1 1. // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen( ...
分类:
其他好文 时间:
2020-01-01 17:09:34
阅读次数:
74
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2020-01-01 10:06:46
阅读次数:
77
part1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fil ...
分类:
其他好文 时间:
2020-01-01 10:03:05
阅读次数:
90
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2020-01-01 09:24:49
阅读次数:
62
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2019-12-30 00:22:18
阅读次数:
61
1.1: // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file ...
分类:
其他好文 时间:
2019-12-28 23:11:10
阅读次数:
148
汉字提取首字母 转自 https://blog.csdn.net/u012998306/article/details/98867025 多谢老哥 fristPinyin : 此函数是将一个中文字符串的第一个汉字转成拼音字母 (例如:"李" l),包括特殊字符处理,可以进行动态添加 sql CREA ...
分类:
数据库 时间:
2019-12-28 19:00:52
阅读次数:
125