实验任务一: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n ...
分类:
其他好文 时间:
2021-06-08 23:29:04
阅读次数:
0
CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(Pangolin_project) #添加Pangolin画图依赖库 find_packa ...
分类:
其他好文 时间:
2021-06-06 19:47:00
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 typedef struct student { int id; /* 学生学号 */ char name[20]; /* 学生姓名 */ char subject ...
分类:
其他好文 时间:
2021-06-06 19:16:23
阅读次数:
0
c语言中用结构体表示点的坐标,并计算两点之间的距离 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ double x; double y; }Point; double dist(P ...
分类:
编程语言 时间:
2021-06-06 18:46:18
阅读次数:
0
写代码的时候遇到这个错误,看了好久才发现问题原因,特此记录一下: data需要写return{ },不写的话就会出现这个错误。 ...
分类:
其他好文 时间:
2021-06-05 18:25:58
阅读次数:
0
1.学生信息处理 代码如下: (全部手敲了一遍累到自己了,就没有加很多注释.....) 1 #include <stdio.h> 2 #include <string.h> 3 #define N 3 4 typedef struct student{ 5 int num; //学号 6 char ...
分类:
其他好文 时间:
2021-06-05 17:45:16
阅读次数:
0
Vue CLI脚手架 Vue CLI 安装和使用 npm install @vue/cli -g vue create 项目的过程 项目的目录结构 认识Vite Vite的构造 浏览器原生支持模块化 Vite的安装和使用 npm install vite –g # 全局安装 npm install ...
分类:
其他好文 时间:
2021-06-05 17:41:29
阅读次数:
0
C程序编译过程: 预处理、编译、汇编、连接; 一 预处理 预处理的过程主要处理包括以下过程: 将所有的#define删除,并且展开所有的宏定义 处理所有的条件预编译指令,比如#if #ifdef #elif #else #endif等 处理#include 预编译指令,将被包含的文件插入到该预编译指 ...
分类:
其他好文 时间:
2021-06-04 18:52:56
阅读次数:
0
IR: define i32 @add1(i32 %p1) { entry: %retVal = add i32 1, %p1 ret i32 %retVal } #include "llvm/ExecutionEngine/Orc/LLJIT.h" #include "llvm/IR/Functi ...
分类:
其他好文 时间:
2021-06-02 20:31:32
阅读次数:
0
首先装好opencv。 然后创建工程 CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(opencv_example_project) # ...
分类:
其他好文 时间:
2021-06-02 18:54:02
阅读次数:
0