摘要: 指针(二) (Week 5) 字符串与指针 指向数组的指针 int a[10]; int p; p = a; 指向字符串的指针 指向字符串的指针变量 char a[10]; char p; p = a; C++ int main() { int a[3][4] = {{1,2,3,4},{5,6,7 阅读全文
posted @ 2020-05-09 23:35 maimai_d 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Culture Matters(Week 5) High/Low Context Communication High Context Communication The Middle East, Asia, Africa, South America Non explicit Descriptiv 阅读全文
posted @ 2020-05-09 13:53 maimai_d 阅读(2867) 评论(0) 推荐(0) 编辑
摘要: Request and Apology Emails(Week 4) How to Write Request Emails Write more POLITELY & SINCERELUY Please Could/Would...? Would you mind...? would like P 阅读全文
posted @ 2020-05-09 02:14 maimai_d 阅读(3423) 评论(0) 推荐(0) 编辑
摘要: Introduction and Announcement Emails (Week 3) Overview of Introduction & Announcement Emails 1. Basic Purpose & Approaches 2. Key language for Writing 阅读全文
posted @ 2020-05-09 02:13 maimai_d 阅读(2588) 评论(0) 推荐(0) 编辑
摘要: Let's Start Writing (Week 2) Write Effective Subject Lines be BRIEF 50 characters or less = 5 7 words for all devices: 25 30 characters = 3 5 words be 阅读全文
posted @ 2020-05-09 02:12 maimai_d 阅读(3665) 评论(0) 推荐(0) 编辑
摘要: Get to Know Basic Email Writing Structures(Week 1) Introduction to Course Email and Editing Basics Subject Lines and Email Text Introductions and Anno 阅读全文
posted @ 2020-05-07 00:39 maimai_d 阅读(4055) 评论(0) 推荐(0) 编辑
摘要: 指针(一) (Week 4) 什么是“指针” 互联网上的资源——地址 当获得一个地址,就能得到该地址对应的资源,所以可以把“网址”称为指向资源的“指针” 内存中的位置——地址 变量的 三要素 :变量的 地址 ,变量的 值 ,变量的 名字 通常把 某个变量的地址 称为“ 指向该变量的指针 ” 如何拿到 阅读全文
posted @ 2020-05-05 15:51 maimai_d 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 函数的递归(Week 3) 什么是递归 引入 函数 可以嵌套调用 :无论嵌套多少层,原理都一样 函数 不能嵌套定义 :不能在一个函数里再定义另一个函数,因为所有函数一律平等 问题:一个函数能 调用它自己 吗? 举递归调用的简单例子 汉诺塔问题 C++ include using namesapce 阅读全文
posted @ 2020-05-04 01:01 maimai_d 阅读(128) 评论(0) 推荐(0) 编辑
摘要: C程序中的函数(Week 1&2) 函数 函数的定义 对函数的普遍认识:y=f(x) C语言中的 常用函数 : 平方根: r = sqrt(100.0) 底数x的y次幂:k = pow(x,y) 字符串的长度:i = strlen(str1) 比较两个字符串的大小: v = strcmp(str1, 阅读全文
posted @ 2020-05-02 02:29 maimai_d 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 期末编程测试(Week 12) Quiz1 判断闰年 阅读全文
posted @ 2020-05-01 17:25 maimai_d 阅读(153) 评论(0) 推荐(0) 编辑