分类 iOS 下的文章


由   YIem   撰写于    浏览:3485  评论: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   撰写于    浏览:3305  评论: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   撰写于    浏览:5082  评论: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   撰写于    浏览:3023  评论: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   撰写于    浏览:4008  评论:0
//// main.m// OC_NO.1//// Created by YIem on 15/11/24.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Car_1[...]

由   YIem   撰写于    浏览:3007  评论:0
//// main.m// OC_2初始化_便利构造器//// Created by YIem on 15/11/25.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import [...]

由   YIem   撰写于    浏览:4377  评论:0
//// main.m// OC_2方法//// Created by YIem on 15/11/25.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Person[...]

由   YIem   撰写于    浏览:4714  评论:0
//// main.m// OC_类和对象//// Created by YIem on 15/11/24.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Perso[...]

由   YIem   撰写于    浏览:3815  评论:0
2015年11月09日进入蓝鸥学习,然后现在第一阶段完事2015-11-24,两周/15天.第一阶段学的是C语言,也是一个基础,之前在学校的时候也有学过C好像是2013年末吧,然后上课也没有听过,在加上时间这么长,也全部忘记了.然后2015-11-10 开始正式学习C语言,从开始学都现在,也从有点了解都慢慢遗忘,我也搞不懂到底怎么了.2015-11[...]

由   YIem   撰写于    浏览:3628  评论: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   撰写于    浏览:2907  评论: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   撰写于    浏览:4175  评论: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>int main(int argc[...]

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

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

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

由   YIem   撰写于    浏览:3859  评论: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   撰写于    浏览:4495  评论:0
//// main.m// C6_结构体//// Created by YIem on 15/11/17.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>

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

由   YIem   撰写于    浏览:2985  评论:0
.h文件// 5.BOOL judge();BOOL judgeNum(int a);

由   YIem   撰写于    浏览:3516  评论: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   撰写于    浏览:3234  评论: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   撰写于    浏览:4451  评论:0
//// main.m// C5_函数2//// Created by YIem on 15/11/16.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>/// 求和int sum([...]

由   YIem   撰写于    浏览:3162  评论:0
//// main.m// C5_函数3.1//// Created by YIem on 15/11/16.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//// main 函数中写函数调用import <Foundation/Foundation.h[...]