udp服务器并发编程1 摘要:测试代码: #define _DEFAULT_SOURCE #include<arpa/inet.h> #include<unistd.h> #include<stdbool.h> #inc…… 文章列表 2021年10月27日 0 点赞 0 评论 102 浏览 评分:0.0
有疑惑的题目 摘要:#### 待解决的问题 ###### 问题001 - 问题: 我们输入数字时都是用: `scanf("%d", &num);` 但是我们输入的不一定就是数字, 比如这里输入了一个字符‘a’, …… 文章列表 2021年10月27日 0 点赞 0 评论 240 浏览 评分:0.0
udp服务器编程系列0 摘要:udp 是一个面向无连接的,不安全的,报式传输层协议,udp 的通信过程默认也是阻塞的。 1、UDP通信不需要建立连接 ,因此不需要进行 connect () 操作 2、UDP通信过程中,每次…… 文章列表 2021年10月26日 0 点赞 0 评论 181 浏览 评分:0.0
题目 1017: [编程入门]完数的判断(大概是最简单无脑的方法) 摘要:```cpp #include using namespace std; #include int main() { int n; cin >> n;//输入 for (in…… 文章列表 2021年10月26日 0 点赞 0 评论 135 浏览 评分:9.9
第一个代码Hello,World! 摘要:#include<stdio.h>int main(){ printf("Hello,World!"); return 0;}…… 文章列表 2021年10月24日 0 点赞 1 评论 116 浏览 评分:9.9
【C语言】笔记—数组标记法 摘要:## 例题(1099) 某校大门外长度为L的马路上有一排树,每两棵相邻的树之间的间隔都是1米。我们可以把马路看成一个数轴,马路的一端在数轴0的位置,另一端在L的位置;数轴上的每个整数点,即0,1,2…… 文章列表 2021年10月24日 0 点赞 0 评论 1871 浏览 评分:7.4
python实现二叉树的操作 摘要:```python from collections import deque class Stack(object): def __init__(self): sel…… 文章列表 2021年10月23日 0 点赞 0 评论 169 浏览 评分:0.0
阶乘求和!!!!! 摘要:#include<stdio.h>int main(){ int n=0,i=0,j=0,s=0,m=1; scanf("%d",&n); if(n<=20){ for(i=0;i<n;…… 文章列表 2021年10月23日 0 点赞 0 评论 235 浏览 评分:0.0
关于listen函数backlog参数实战 摘要:一、环境: Ubuntu 18.04.1 LTS二、头文件 #include<sys/socket.h>三、函数简介 int listen(int sockfd,int backlo…… 文章列表 2021年10月23日 0 点赞 0 评论 218 浏览 评分:9.9
Sn公式求和;;;;; 摘要:#include<stdio.h>int main(){ int a=2,n=0,i=0,j=0,s=0,m=1; scanf("%d",&n); for(i=0;i<n;i++){ f…… 文章列表 2021年10月23日 0 点赞 0 评论 193 浏览 评分:0.0