码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
Qt 自定义 进度条 纯代码
一 结果图示 二 代码 头文件 #ifndef CPROGRESS_H #define CPROGRESS_H #include <QWidget> #include <QPainter> #include <QDebug> #include <qmath.h> class CProgress : ...
分类:其他好文   时间:2021-03-17 15:07:57    阅读次数:0
基于单片机数码管秒表控制系统设计
1485下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 #include <reg51.h> #include <intrins.h> #define uchar unsigned char #define uint u ...
分类:其他好文   时间:2021-03-17 14:10:52    阅读次数:0
linux c读取分割符文件的每一行最后一个字符串
假如分割符文件为 11 22 33 44 55 66 只获取33,66数据,代码如下,核心利用fgets读取到回车终止 #include <sys/types.h> #include <stdio.h> #include <stdbool.h> #define MAX_LEN 1024 bool R ...
分类:系统相关   时间:2021-03-16 14:05:13    阅读次数:0
多项式相加
多项式相加有很多种实现方法。 不怕浪费空间的可以用数组,数组下标当作指数; 结构可以同时存储指数和系数,但要开辟新的空间存放比较后相加的结果; 链表可以和结构一样使用,开辟新链表,不断释放旧的链表; 这里介绍一种直接利用两个链表的结点,以一个链表为基准,将另外一个链表的结点选择性加入,同时释放系数为 ...
分类:其他好文   时间:2021-03-16 13:52:06    阅读次数:0
makefile 中 $@ $^ %< 使用
假设有下面这样的一个程序,源代码如下: 1 /* main.c */ 2 #include "mytool1.h" 3 #include "mytool2.h" 4 5 int main(int argc,char **argv) 6 { 7 mytool1_print("hello"); 8 my ...
分类:其他好文   时间:2021-03-16 13:48:47    阅读次数:0
P1782 旅行商的背包
#include <cmath> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <iostream> #include <algorithm> #define int long lon ...
分类:其他好文   时间:2021-03-16 13:45:35    阅读次数:0
[POI2005]BAN-Bank Notes
#include <cmath> #include <queue> #include <cstdio> #include <vector> #include <cstring> #include <iostream> #include <algorithm> #define ll long long ...
分类:其他好文   时间:2021-03-16 13:45:15    阅读次数:0
odoo14在列表视图里添加自定义按钮
static/js/xxxx.js 这里定义按钮odoo.define('add.tree.view.buttons', function (require) { "use strict"; var core = require('web.core'); var ListController = r ...
分类:其他好文   时间:2021-03-16 13:30:43    阅读次数:0
pipioj 1023: 巨人排队(贪心)
http://www.pipioj.online/problem.php?id=1023 每次把当前的放在能排的当中最矮的一队里就ok 1 #define IO std::ios::sync_with_stdio(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:其他好文   时间:2021-03-15 11:32:55    阅读次数:0
windows程序员开发linux程序的头一个月
开发环境选择 vim,vscode,qt,visual studio都可以做linux c++开发,但是作为windows程序员,最熟悉的还是visual stuio,加上visual studio 2019 支持cmake及linu开发,所以最终选择了visual studio 2019 + cm ...
分类:Windows程序   时间:2021-03-15 11:25:17    阅读次数:0
25272条   上一页 1 ... 15 16 17 18 19 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!