自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

三三想说

只为了学习

  • 博客(34)
  • 资源 (2)
  • 收藏
  • 关注

原创 cloudflare API 接入最佳实践

Cloudflare提供的服务包括内容分发网络(CDN)、域名系统(DNS)、网页应用程序防火墙(WAF)、服务器less计算等,帮助提高网站性能和安全性,同时简化了网络管理。如果您拥有一个域名并通过Cloudflare进行配置,且希望设置一个以该域名为后缀的电子邮箱地址,Cloudflare的Email Routing功能能够满足您的需求。Cloudflare 的 Email Routing 功能确实支持通过API进行管理,这使得它能够轻松集成到您的网站中,增强电子邮件管理的能力。

2024-08-06 17:49:34 175

原创 go 匿名函数闭包协程(goroutine)Pipeline

我选择的通过Jira API 进行数据统计。流程为通过 Jira API 执行 JQL 查询数据,在 go 中进行数据处理,例如统计。JQL 的查询不能关联查询,例如我要统计 Story 的信息和 Story 子任务的信息,需要分两次查询,当一个 Sprint 下 Story 多的时候,执行效率会下降。如何使用 go 语言的特性。

2024-06-06 11:57:31 204

原创 2024 大模型必知必会词条术语

大模型火了, 程序员应该要了解一些. 整理了常见的一些术语, 例如 大模型,AI, 神经网络等。

2024-05-18 11:12:15 242

原创 iOS 播客实时字幕方案

iOS 英文播客, 锻炼英语听力, 但是初期太难, 需要字幕辅助, 寻找方法, 发现可以解决. 解决方案具体步骤。

2024-04-10 10:14:58 959

原创 ubuntu chmsee乱码问题解决

1. 主菜单2. 编辑3. 配置4 字符集,选择东亚,然后选择GB18030,就OK了

2011-08-17 21:12:35 1981

原创 买苹果

/* * 49.cpp * *  Created on: 2011-8-8 *      Author: san */#include int main(void){//定义变量int n = 2;int day = 0

2011-08-16 18:07:28 415

原创 分离整数的各位数

/* * 1.cpp * *  Created on: 2011-8-8 *      Author: san */#include int part(int n){//int i = 0;int j = 0;if (n

2011-08-16 18:06:35 780

原创 分糖果问题

/* * 51.cpp * *  Created on: 2011-8-9 *      Author: san */# include int main(void){int n;float sum1;float sum

2011-08-16 18:05:53 466

原创 加油站加油

/* * 46.cpp * *  Created on: 2011-8-8 *      Author: san */#include int main(void){float x;char y;char z;flo

2011-08-16 18:05:26 1383

原创 回文字符串

/* * 37.cpp * *  Created on: 2011-8-8 *      Author: san */# include //自定义函数,实现回文字符串的判断int palind(char str[], int k,

2011-08-16 18:05:03 294

原创 字符串倒置

/* * 35.cpp * *  Created on: 2011-8-8 *      Author: san */# include # include #define N 100//定义字符串倒置函数char conv

2011-08-16 18:04:35 533

原创 字符串连接

/* * 38.cpp * *  Created on: 2011-8-8 *      Author: san */#include int main(void){int i = 0;//定义循环变量int j = 0;/

2011-08-16 18:04:11 278

原创 小球落地

/* * 47.cpp * *  Created on: 2011-8-8 *      Author: san */# include int main(void){int i;float h = 100;float

2011-08-16 18:03:46 324

原创 平均身高

/* * 44.cpp * *  Created on: 2011-8-8 *      Author: san */# include //自定义函数,求年龄的平均成绩float average(float array[], in

2011-08-16 18:03:11 665

原创 新同学的年龄

/* * 52.cpp * *  Created on: 2011-8-9 *      Author: san */# include int main(void){long a[10] = {0};long s[

2011-08-16 18:01:57 399

原创 递归求年龄

/* * 43.cpp * *  Created on: 2011-8-8 *      Author: san */# include //自定义函数求年龄int age(int n) {int f;if (n == 1)

2011-08-16 18:01:14 866

原创 灯塔数量

/* * 49.cpp * *  Created on: 2011-8-8 *      Author: san */# include int main(void){int n = 1;int m;int sum;

2011-08-16 18:00:44 341

原创 猴子吃桃

# include int main(void){int day = 9;int x1;int x2 = 1;//最后一天的桃子while (day > 0){x1 = (x2 + 1) * 2;//前一天的桃子等于后一天的桃子加1

2011-08-16 18:00:16 197

原创 宏实现值的交换

/* * 56.cpp * *  Created on: 2011-8-9 *      Author: san */# include # define swap(a, b){int c; c = a; a = b; b = c;}//宏定义

2011-08-16 17:59:39 283

原创 百鸡百钱问题

/* * 53.cpp * *  Created on: 2011-8-9 *      Author: san */#include int main(void){int cock;int hen;int chick;

2011-08-16 17:58:58 323

原创 统计字符

/* * 34.cpp * *  Created on: 2011-8-8 *      Author: san */# include int main(void){//定义变量char c;int letters =

2011-08-16 17:58:06 333

原创 简单结构体

/* * 1.cpp * *  Created on: 2011-8-16 *      Author: san *      简单结构体,不完整的程序 */# include struct{int num;ch

2011-08-16 17:57:00 248

原创 文件简单操作

/* * 1.cpp * *  Created on: 2011-8-16 *      Author: san *      键盘输入一些字符,送到磁盘上 */# include # include int main(void

2011-08-16 17:55:58 200

原创 简单链表

/* * 1.cpp * *  Created on: 2011-8-15 *      Author: san *      建立一个简单的链表且输出 */# include //# define NULL 0struct s

2011-08-16 17:55:26 206

原创 完整链表

/* * 2.cpp * * Created on: 2011-8-16 * Author: san * 链表的建立,输出,删除,插入 * 11时42分38秒 * 可以同时删除多个记录,插入多个记录请参考谭浩强主编《c语言程

2011-08-16 11:43:57 426

原创 结构体数组

/* * 2.cpp * *  Created on: 2011-8-15 *      Author: san */# include # include struct person{char name[20];int

2011-08-15 18:47:48 236

原创 结构体

/* * 1.cpp * *  Created on: 2011-8-15 *      Author: san */# include int main(void){struct student{long int nu

2011-08-15 18:47:26 236

原创 指向指针的指针

/* * 8.cpp * *  Created on: 2011-8-14 *      Author: san */# include int main(void){int i;char **p;char *

2011-08-15 18:46:43 256

原创 指针数组

/* * 7.cpp * *  Created on: 2011-8-14 *      Author: san */# include # include int main(void){void sort(char * n

2011-08-15 18:46:14 204

原创 返回指针的函数

/* * 5.cpp * *  Created on: 2011-8-13 *      Author: san */# include float * search(float (* pointer)[4], int n);

2011-08-15 18:45:42 285

原创 指向函数的指针作函数的参数

/* * 3.cpp * *  Created on: 2011-8-13 *      Author: san */# includeint main(void){int max(int, int);int min(int

2011-08-15 18:44:50 269

原创 字符指针作函数参数

/* * 1.cpp * *  Created on: 2011-8-13 *      Author: san */# include void copy(char from[], char to[]);int main(

2011-08-15 18:44:08 521

原创 字符串和指针

/* * 6.cpp * *  Created on: 2011-8-12 *      Author: san */# include int main(void){char a[] = "I am a boy!";cha

2011-08-15 18:43:08 272

原创 指向数组的指针作函数参数

/* * 5.cpp * *  Created on: 2011-8-11 *      Author: san */# include void average(float * p, int n);void search(floa

2011-08-15 18:41:53 343

EditPlus 无需激活

EditPlus 无需激活 很实用的工具 简单易用 不下载不后悔

2011-10-12

数据结构经典考研题目1800道

经典的数据结构题目1800道题目,不下要后悔,赶快行动吧,不容易呀

2011-03-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除