//猴子摘了好多好多桃子,一天需要吃掉总数的2/3, //觉得不过瘾,还得再多吃一个 //吃到第9天的时候,发现只有2个桃子了 //问,当初猴子摘了多少桃子 class Program { public int taozi(int n) { int sum; if (n == 9) { return ...
error items-9022:missing required icon file.the bundle does not contain an app icon for iPhone/iPad Touch of exactly '120x120' pixels,in.pen format fo ...
分类:
移动开发 时间:
2016-10-07 11:37:58
阅读次数:
416
一个QImage或QPixmap新建变量时,第一次填充图片时设置的宽高正常(fill),其后的绘制操作(draw)则会在绘制的矩形底边和右边加上painter.pen().width() 在下面代码17行设置端点查看内存可以直观看到只在右边和底边++ ...
分类:
其他好文 时间:
2016-09-29 18:11:37
阅读次数:
154
二次贝塞尔曲线demo: See the Pen quadraticCurveDemo by hanyanjun (@hanyanjun) on CodePen. 我的demo地址(二次) 三次贝塞尔曲线demo: See the Pen bezierCurveDemo by hanyanjun ( ...
分类:
其他好文 时间:
2016-09-18 22:15:07
阅读次数:
165
来源:http://codepen.io/FlyC/pen/yaNVEQ ...
分类:
其他好文 时间:
2016-09-14 18:56:00
阅读次数:
220
private void pictureBox2_Paint(object sender, PaintEventArgs e) { PictureBox p = (PictureBox)sender; Pen pp = new Pen(Color.Red); e.Graphics.DrawRecta ...
分类:
其他好文 时间:
2016-07-30 12:04:07
阅读次数:
325
css3能做什么 响应式开发的基础,然后能实现一些酷炫的效果咯。 以下案例纯css3实现,一点都没用js (入门简单,但是水很深) 叮当猫纯用css3做出 http://codepen.io/airen/pen/icFba 如果大家感兴趣,大家可以去慕课网上找大漠老师的课学习。 边框 1.圆角效果 ...
分类:
Web程序 时间:
2016-07-24 20:50:05
阅读次数:
410
先来看demo:http://codepen.io/jonechen/pen/xOgZMz 插件代码: 插件调用: ...
分类:
Web程序 时间:
2016-06-24 14:45:21
阅读次数:
261
关于枚举 常见定义形式,类似定义结构体,先定义枚举变量类型: typedef enum{ Bit_RESET = 0, Bit_SET}BitAction; enum box{pencil,pen}; 再定义变量:enum box box2;//或者简写成box box2; 再有一种就是在声明的时候 ...
分类:
其他好文 时间:
2016-05-30 19:53:03
阅读次数:
316