2015年11月


由   YIem   撰写于    浏览:3447  评论:0
我一直很好奇,对别人好,别人真的会感激你吗?一年的时间还不能让你们有一点感激的心吗?我真的不需要感激,我只求你不要在我的背后落井下石,真的,我真的搞不懂你们这群人是怎么想的,需要的时候那个可怜样子,我看着心软.不需要嗯时候,就是一只白眼狼.我不知道你的心里是怎么想的,我有让你帮我做过什么吗?我求你了吗?大叔,人真的可以这么无下限吗?你瞎BB你妈逼啊[...]

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

由   YIem   撰写于    浏览:3566  评论: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   撰写于    浏览:2867  评论: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   撰写于    浏览:4137  评论: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   撰写于    浏览:3414  评论:0
//// main.m// C9_内存管理//// Created by YIem on 15/11/20.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//

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

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

由   YIem   撰写于    浏览:3781  评论: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   撰写于    浏览:4454  评论: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   撰写于    浏览:4133  评论:0
.h文件/// 打印数组// 参数1: 数组类型// 参数2: 元素个数void printArray(int a[], int count);/// strcpyvoid stringCopy(char s1[], char s2[]);

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

由   YIem   撰写于    浏览:3480  评论: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   撰写于    浏览:3192  评论: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   撰写于    浏览:4402  评论: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([...]