02 2024 档案
摘要:https://www.audacityteam.org/
阅读全文
摘要:void sorr(int array[], int start, int last) { for (int i = start; i < last-1; i++) { for (int j = start; j < last - 1;j++) { if (array[j] > array[j +
阅读全文
摘要:基本描述 在bat脚本中,if条件判断语句共有6种比较操作符,分别为 其中,只有等于操作符可以使用符号 “==” 表示,其他操作符只能使用英文简写 当参与比较的字符串是字符串时,将被转换为对于的ASCII码进行比较 If指令基本格式 指令格式为:if 条件表达式 (…) 注意: 英文缩写的比较操作符
阅读全文
摘要:#include <iostream> using namespace std; class base1 { private: int a, b; public: base1(int i) : b(i + 1), a(b) {} base1():b(0), a(b) {} int get_a() {
阅读全文
摘要:子串(包括空串):n(n+1)/2 + 1 非空子串(不包括空串):n(n+1)/2 非空真子串(不包括空串和跟自己一样的子串):n(n+1)/2 - 1 所以答案是37
阅读全文
摘要:如果六个字母不同则有A66 种方法 但有两个字母重复,一个字母重复是除以2,两个就是A66 /4=180
阅读全文
摘要:import requests cookies = { 'JSESSIONID': 'ACC5D9245FC54596A57C4486CF2C0EA9', 'HstCfa4602665': '1707702051444', 'HstCla4602665': '1707702051444', 'Hst
阅读全文