具有数学经济学计算机基础技巧,广州大学教师/Lecturer 会计、管理学、经济学、计算机基础、高等数学、商务统计学、线性代数、批判性思维等...

University Lecturer/Teacher Needed

Sino-American Center

South China University of Technology

HEMC, Guangzhou

Position and Deerrorscription:

1. Position: University lecturer

2. Teaching period: From September, 2011 to February, 2012 or From September, 2011 to June, 2012

3. Students level: Undergraduate (1st year)

4. Teaching subject:

(1) Accounting 会计原理( Principles of accounting)

(2) Management 管理学 (people and organizations management stream)

(3) Principles of Microeconomics 微观经济学

(4) Principles of Macroeconomics 宏观经济学

(5) Computer Application Fundamentals 计算机基础

(6) Advanced Mathematics 高等数学

(7) Statistics 商务统计学

(8) Linear Algebra 线性代数

(9) Critical Thinking and Philosophy 批判性思维与哲学

5. Location of the university: Guangzhou Higher Education Mega Center

6. Contract duration: At least one semester

7. Salary in local currency: Competitive

8. Working hours per week: 4 / 6 / 8 lessons per week; 45 mins per lesson

9. Working Shift: From Monday to Friday (you can finish your lessons in two half-day(morning or afternoon) sessions.

Qualifications to Applicant:

1. Be able to teach the specialized course in English

2. Holding the teaching certificate

3. Age: 26–65 years old

4. With Ph.D degree or above and more than 2 years’teaching experience in relevant subject (a). candidate with Master degree only must have more than 4 years’teaching experience in relevant subject at University or College (b). candidate with bachelor degree only must have more than 10 years’teaching experience in relevant subject at University or College

5. Mature, positive and enthusiastic

Applicants should submit:

1. Cover Letter & Resume with your mobile phone number

If you are interested in this position, please email your Resume to Mr. Chen and state your teaching subject as well.

E-mail: recruit****@******.***

Sino-American Center

South China University of Technology

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
用赋值兼容规则改写#include <iostream> #include <string> using namespace std; // 定义教师抽象类 class Teacher { public: Teacher(string name, int course_num) : name_(name), course_num_(course_num) {} virtual ~Teacher() {} virtual int get_salary() = 0; // 计算月工资的虚函数 virtual string get_name() = 0;//获取老师名字 protected: string name_; // 姓名 int course_num_; // 课时数 }; // 定义教授类 class Professor : public Teacher { public: Professor(string name, int course_num) : Teacher(name, course_num) {} // 计算月工资的具体实现 virtual int get_salary() { return 5000 + course_num_ * 50; } virtual string get_name() { return name_; } }; // 定义副教授类 class AssociateProfessor : public Teacher { public: AssociateProfessor(string name, int course_num) : Teacher(name, course_num) {} // 计算月工资的具体实现 virtual int get_salary() { return 3000 + course_num_ * 30; } virtual string get_name() { return name_; } }; // 定义讲师类 class Lecturer : public Teacher { public: Lecturer(string name, int course_num) : Teacher(name, course_num) {} // 计算月工资的具体实现 virtual int get_salary() { return 2000 + course_num_ * 20; } virtual string get_name() { return name_; } }; int main() { // 创建教授对象 Professor p("好小子", 10); cout << "教授 " << p.get_name() << " 的工资是 " << p.get_salary() << " 元." << endl; // 创建副教授对象 AssociateProfessor ap("好小伙", 20); cout << "副教授 " << ap.get_name() << " 的工资是" << ap.get_salary() << " 元." << endl; // 创建讲师对象 Lecturer l("好家伙", 30); cout << "讲师 " << l.get_name() << " 的工资是 " << l.get_salary() << " 元." << endl; system("pause"); return 0; }
06-09

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值