C语言
文章平均质量分 89
TedLau.
你很懒,还没有添加简介。
展开
-
Add more than one main func in a single CPP solution
在项目中添加多个包含main函数的源文件add more than one main func in a single project原创 2022-05-24 12:54:16 · 163 阅读 · 0 评论 -
gets与换行再认识
需要接收gets后的换行吗?原创 2020-04-21 21:30:57 · 1262 阅读 · 2 评论 -
C语言课程设计之通讯录系统的模拟
//原文出处鄙人Blog://图片为一个菜单示意图,可以自行设计#include<stdio.h>#include<string.h>#include<stdlib.h>#include <pthread.h>#define LEN 11#define MINLEN 5#define LINE 0int NO;int job;t...原创 2020-02-04 23:05:13 · 325 阅读 · 0 评论 -
离散数学判断集合的二元关系(相容、偏序、等价)
第一次在CSDN上写文章,直接上代码了,这个题目也不难,各个函数都非常的容易理解。(略显智障的函数名…#include<stdio.h>#include<stdlib.h>int Relation_matrix[15][15],Tmp[15][15];int R_size,R_num;typedef int Status;Status Zifan();Stat...原创 2019-11-15 22:06:46 · 3614 阅读 · 0 评论