码迷,mamicode.com
首页 >  
搜索关键字:fclose    ( 394个结果
物流即使查询API - PHP篇
上一篇文章我们介绍了一个物流服务提供商,推荐大家使用快递鸟接口,主要介绍了如何注册账号,获得密钥,找不到注册地址的,我在发一下: http://kdniao.com/reg 之前也聊过如何利用快递鸟提供的接口来实现即时查询。也提供了C#版本,Java版本,这次我们用PHP来实现接口对接, 在开发之前 ...
分类:Windows程序   时间:2020-02-12 00:39:38    阅读次数:126
sort运用
``` #include #include #include using namespace std; struct Node{ int x,y; }a[100]; int n; //比较函数 int cmp(Node a,Node b){ if(a.x==b.x)return a.y>n; for... ...
分类:其他好文   时间:2020-01-13 20:21:33    阅读次数:92
2020.1.11 考试总结
T1 P3537 [POI2012]SZA Cloakroom 有n件物品,每件物品有三个属性a[i], b[i], c[i] (a[i]m+s。 2. 所有选出物品的c[i]的和正好是k。 输入输出样例 输入 1 输出 1 正解 将物品按照 a 排序 , 询问按照 m 排序。 这样按顺序枚举询问 ...
分类:其他好文   时间:2020-01-11 18:45:03    阅读次数:85
2020.1.9考试总结
"T1" 数据范围很合适.. 第一档就是暴力枚举 第二档就是数位DP 第三档就是矩阵乘法 丢一下学长的 "博客" ...
分类:其他好文   时间:2020-01-09 21:03:30    阅读次数:86
[PHP] php作为websocket的客户端实时读取推送日志文件
首先要使用composer来下载一个第三方扩展就可以实现php的websocket客户端,直接在当前目录生成下composer.json文件就可以了composer require textalk/websocket 配合php的读取文件操作,只读取最新的追加的内容,下面代码为读取日志的客户端 , ...
分类:Web程序   时间:2020-01-03 20:58:37    阅读次数:106
实验7
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 11:44:08    阅读次数:63
实验7
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 00:00:59    阅读次数:97
实验七
《实验七》 验证性实验1: 验证性内容2: 验证性内容3: 验证性内容4: 以二进制形式存入file4.dat后,内容不可以直接读出 编程练习: #include <stdio.h>#include <stdlib.h>#include <string.h>const int N = 5;typed ...
分类:其他好文   时间:2019-12-31 17:08:02    阅读次数:83
C++最新图形学项目代码(一)
#include <iostream> #include <cmath> #include <cfloat> #include <cstdlib> #pragma warning(disable: 4996) #pragma warning(disable: 4305) #pragma warnin ...
分类:编程语言   时间:2019-12-27 23:20:51    阅读次数:89
c语言文件
c语言文件 任务1 你现在拥有一个数组,数组中储存着总共10个人的姓名字符串 你需要为每个人创建一个txt文件,以他们的名字命名。 生成效果如下 代码如下 include include include include struct stu { char id[100]; char name[30] ...
分类:编程语言   时间:2019-12-21 11:52:13    阅读次数:91
394条   上一页 1 2 3 4 5 6 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!