摘要: 1、创建一个drawboard#import "DrawBoard1.h"@implementation DrawBoard1-(void)drawRect:(CGRect)rect{ CGContextRef context=UIGraphicsGetCurrentContext(); CGC... 阅读全文
posted @ 2014-09-22 22:07 慕容曦文 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #includelong fibonacci (long n ){ if ( n == 1 || n == 0) return 1; else return fibonacci(n-1)+fibonacci(n-2);}int main(void){ long n; scanf("%l... 阅读全文
posted @ 2014-09-22 09:26 慕容曦文 阅读(119) 评论(0) 推荐(0) 编辑