#import "SZMNavBaseController.h"@interface SZMNavBaseController ()@end@implementation SZMNavBaseController- (void)viewDidLoad { [super viewDidLoad]...
分类:
其他好文 时间:
2015-12-04 22:47:52
阅读次数:
174
期末考试后,甲小组里共有5个人,组长要统计组员成绩的平均分,已知A考了98;B考了85;C考了88;D考了90;E考了96。package Wu;public class wu {public static void main(String[] args) { int[]b=new int[5...
分类:
编程语言 时间:
2015-12-04 22:47:41
阅读次数:
192
public class JCH { public static void main(String[] args) { //数组 int[] a = new int[3]; a[0] = 1; a[1] = 2; ...
分类:
其他好文 时间:
2015-12-04 22:43:51
阅读次数:
158
#include//心累,感觉没法优化了......#includeint a[500010];void wap();int main(){ int n,x; wap(); scanf("%d",&n); while(n--) { scanf("%d",&...
分类:
其他好文 时间:
2015-12-04 22:36:56
阅读次数:
195
4的阶乘:4!=1*2*3*4public class g { /** * @param args */ public static void main(String[] args) { int n = 4; // 4!=1*2*3*4 ...
分类:
其他好文 时间:
2015-12-04 22:34:53
阅读次数:
149
任意四边形可以密铺整个二维平面,这里将给出其代码实现.void CTileQuadrangleGridDrawer::BuildTileQuadrangle(Vector3* v){ Vector2 vDis01 = m_quadPositions[0] - m_quadPositions[1...
分类:
其他好文 时间:
2015-12-04 22:33:18
阅读次数:
194
在一个vs2013解决方案下创建了三个工程文件,在其中一个工程(Foundation)中放有CtrlMessage.pb.h和ControlMessageTags的头文件。编译后出错总共68处。错误 2 error LNK2019: 无法解析的外部符号 "void __cdecl google::....
分类:
其他好文 时间:
2015-12-04 20:49:33
阅读次数:
4851
void SkinRGB(IplImage* rgb, IplImage* _dst){ assert(rgb->nChannels == 3 && _dst->nChannels == 3); static const int R = 2; static const int G ...
分类:
其他好文 时间:
2015-12-04 20:46:00
阅读次数:
204
很久没写博客了,见天有点时间来写下,一直觉得弹性头部很炫,看起来高大上,写起来蛮简单的层次分析如上图,一共有3层,最底部是图像层,中间是scrollView或者它的子类,最上层是scrollView上面添加的视图主要代码scrollView的代理方法- (void)scrollViewDidScro...
分类:
移动开发 时间:
2015-12-04 20:38:48
阅读次数:
174
// block用来保存一段代码 // block的标志:^ /* block跟函数很像 1.可以保存代码 2.有返回值 3.有形参 4.调用方式一样 */ // 定义block变量 void (^myblock)...
分类:
其他好文 时间:
2015-12-04 20:17:12
阅读次数:
145