1、代码 #pragma mark - 判断机型 /* 设备是否为iPhone4、iPhone4S (1)逻辑分辨率(point):320x480 (2)物理分辨率(pixel,像素):640x1136 (3)缩放因子 :@2x (4)PPI(像素密度): 326 (5)对角线:3.5 inch * ...
分类:
移动开发 时间:
2020-06-26 18:24:18
阅读次数:
143
A. Donut Shops 题目传送门 水题,就用a * b和c比一下大小就行了,要求买第一种饼干便宜的情况就假设只买一块,比较a和c的大小,求买第二种便宜就比较 a * b和c比大小就行了 #include<bits/stdc++.h> using namespace std; #pragma ...
分类:
其他好文 时间:
2020-06-26 11:02:28
阅读次数:
134
头文件 #pragma once #include "pch.h" class CGridCtrl : public CWnd { public: void Create(CWnd* pParent, DWORD dwStyle, RECT rect, UINT nId); void InsertC ...
分类:
编程语言 时间:
2020-06-23 19:01:05
阅读次数:
64
Solidity支持条件语句,让程序可以根据条件执行不同的操作。条件语句包括: if if...else if...else if 语法 if (条件表达式) { 被执行语句(如果条件为真) } 示例 展示if语句用法。 pragma solidity ^0.5.0; contract Solidi ...
分类:
其他好文 时间:
2020-06-23 17:31:33
阅读次数:
58
这个api的功能主要是实现“透明” 原理: Transparent将hdc中bmp的特定颜色“透明化” #include <Windows.h> #pragma comment(lib,"Msimg32.lib") using namespace std; HBITMAP hBitmap; HBIT ...
练习 1: 编写 C++程序完成以下功能: 1)定义一个 Point 类,其属性包括点的坐标,提供计算两点之间距离的方法; 2)定义一个 圆形 类,其属性包括圆心和半径; 3)创建两个圆形对象,提示用户输入圆心坐标和半径,判断两个圆是否相交,并输出结果。 Point.h #pragma once c ...
分类:
编程语言 时间:
2020-06-17 01:17:18
阅读次数:
61
UIViewController 的 生命周期 #pragma mark life circle // 非storyBoard(xib或非xib)都走这个方法 - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBun ...
分类:
其他好文 时间:
2020-06-15 12:12:01
阅读次数:
64
1.F1值优化 https://www.jianshu.com/p/51debab91824 from functools import partial import numpy as np import scipy as sp from sklearn.metrics import f1_scor ...
分类:
系统相关 时间:
2020-06-14 18:25:28
阅读次数:
156
#pragma GCC optimize(2) #include<bits/stdc++.h> #define ll long long #define maxn 1000005 #define inf 1e9 #define pb push_back #define rep(i,a,b) for( ...
分类:
其他好文 时间:
2020-06-12 21:47:58
阅读次数:
79
由于实验室需要,今天重新安装了一下VC6,结果在安装VC6LineNumberAddin是出现了一些问题。 安装这个插件的目的是可以在编写代码时候,自动显示行号。。。。。唉,用习惯了VS2010,对自动显示行号早就习以为常了。。。。。 最让人讨厌的就是Unable to register this ...
分类:
其他好文 时间:
2020-06-11 20:03:42
阅读次数:
86