由   YIem   撰写于    浏览:5032  评论: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(int

由   YIem   撰写于    浏览:2893  评论: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 "Student.h"i

由   YIem   撰写于    浏览:3968  评论: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.h"im

由   YIem   撰写于    浏览:2976  评论: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 "Zomb

由   YIem   撰写于    浏览:4301  评论: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.h"im

由   YIem   撰写于    浏览:4667  评论: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 "Person.h"i

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

由   YIem   撰写于    浏览:3586  评论: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 "MyFunc.h"

由   YIem   撰写于    浏览:2875  评论: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 {int

由   YIem   撰写于    浏览:4145  评论: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, con

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

由   YIem   撰写于    浏览:4150  评论: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.h"int

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

由   YIem   撰写于    浏览:3080  评论: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(int

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

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

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

由   YIem   撰写于    浏览:3487  评论: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() % (1

由   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>// 函数 的四大结构/// 1.无返回

由   YIem   撰写于    浏览:4413  评论: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(int a

由   YIem   撰写于    浏览:3124  评论: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>i

由   YIem   撰写于    浏览:3594  评论: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>// 函数 的四大结构/// 1.无返回

由   YIem   撰写于    浏览:3932  评论:0
C语言---给定某年某月某日,输出其为这一年的第几天int y = 0, m = 0, d = 0, ds = 0;scanf("%d%d%d", &y, &m, &d); ds = d; switch (m - 1) { case 11: ds += 30; case 10: