关键字 for 的文章


由   YIem   撰写于    浏览:3095  评论:0
//// RootViewController.m// UI6_UIScrollView//// Created by YIem on 15/12/14.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h[...]

由   YIem   撰写于    浏览:5993  评论:0
//// RootViewController.m// UI5_UIControl//// Created by YIem on 15/12/11.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"//[...]

由   YIem   撰写于    浏览:4033  评论:0
Objective-C(新)Objective-C考试 ※ 选择题(共80题,每题1分)1、不会立刻使引用计数器改变的是:答案:(C) A、release B、alloc C、autorelease D、retain2、OC中布尔(BOOL)类型的变量的值只有:答案:(B) A、1/0 B、YES/NO C、true/false D、1/-13[...]

由   YIem   撰写于    浏览:3355  评论:0
//// main.m// OC_7遍历//// Created by YIem on 15/12/2.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Model.h[...]

由   YIem   撰写于    浏览:4751  评论:0
//// main.m// OC6_省市区//// Created by YIem on 15/12/1.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Model.[...]

由   YIem   撰写于    浏览:3728  评论:0
//// main.m// OC6_练习//// Created by YIem. on 12/1/15.// Copyright (c) 2015 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Book.h"[...]

由   YIem   撰写于    浏览:3491  评论:0
//// main.m// OC5_数组_字典//// Created by YIem. on 11/30/15.// Copyright (c) 2015 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main(in[...]

由   YIem   撰写于    浏览:3454  评论:0
//// main.m// OC2015-11-27作业//// Created by YIem on 15/11/27.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int ma[...]

由   YIem   撰写于    浏览:3278  评论:0
//// main.m// OC_4数组//// Created by YIem on 15/11/27.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main(int a[...]

由   YIem   撰写于    浏览:5036  评论:0
//// main.m// OC_4NSString//// Created by YIem on 15/11/27.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main[...]

由   YIem   撰写于    浏览:2895  评论:0
//// main.m// OC_3属性//// Created by YIem on 15/11/26.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Studen[...]

由   YIem   撰写于    浏览:3587  评论:0
//// main.m// C10_函数指针//// Created by YIem on 15/11/23.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "MyFu[...]

由   YIem   撰写于    浏览:2876  评论:0
//// main.m// C9_结构体指针//// Created by YIem on 15/11/20.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>struct test [...]

由   YIem   撰写于    浏览:3425  评论:0
//// main.m// C9_内存管理//// Created by YIem on 15/11/20.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//

由   YIem   撰写于    浏览:4151  评论:0
//// main.m// 第七次作业//// Created by YIem on 15/11/18.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "MyACEn.[...]

由   YIem   撰写于    浏览:3554  评论:0
某班有5个学生,三门课。分别编写3个函数实现以下要求: (1) 求各门课的平均分; (2) 找出有两门以上不及格的学生,并输出其学号和不及格课程的成绩; (3) 找出三门课平均成绩在85-90分的学生,并输出其学号和姓名

由   YIem   撰写于    浏览:3081  评论:0
//// main.m// C7_指针//// Created by YIem on 15/11/18.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>void printArray[...]

由   YIem   撰写于    浏览:2960  评论:0
/// 两门课以上不及格void printBujige(Student stu[], int count) {// 遍历 for (int i = 0; i < count; i++) { // 保存不及格课数 int num = 0; // 临时学生结构体 Student s = stu[i]; /[...]

由   YIem   撰写于    浏览:3813  评论:0
//// main.m// C6_结构体2//// Created by YIem on 15/11/17.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "MyFunc.h"

由   YIem   撰写于    浏览:4152  评论:0
.h文件/// 打印数组// 参数1: 数组类型// 参数2: 元素个数void printArray(int a[], int count);/// strcpyvoid stringCopy(char s1[], char s2[]);

由   YIem   撰写于    浏览:3488  评论:0
.h文件/// 1.void max20();int returnMax20();/// 3.void inputNum1();void inputNum2(int a);.m文件void max20() {int max = 0; for (int i = 0; i < 20; i++) { int a = arc4random()[...]

由   YIem   撰写于    浏览:3198  评论:0
//// main.m// C_5函数//// Created by YIem on 15/11/16.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>// 函数 的四大结构/// [...]

由   YIem   撰写于    浏览:3595  评论:0
//// main.m// C_5函数//// Created by YIem on 15/11/16.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>// 函数 的四大结构/// [...]

由   YIem   撰写于    浏览:3496  评论:0
//// main.m// C5_二维数组//// Created by YIem on 8/15/15.// Copyright (c) 2015 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main(int ar[...]

由   YIem   撰写于    浏览:3456  评论:0
//// main.m// 第四次作业低能儿版本//// Created by YIem on 15/11/13.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>define SIZ[...]