English in December

前言


   这个月的英语学习看起来是那么的不平常,那么它不平常在哪呢?

    First:一个如此离不开被窝的我竟然破天荒的去参加了晨读,但现在也已经坚持了一周多了,而且会一如既往的坚持!

    Second:以前对音标如此不屑的我,现在居然会抱着音标书仔仔细细的看,细细研究每一个发音。

    Third:以前对英语那么不屑的我居然每天最少坚持2个小时学英语。

    Oh,my God!我这是怎么了?

过程


    这一切的一切都是来源于11期文斌师哥组织的英语强化训练(目前是出于音标强化训练的阶段)。以前也一直说自己一定要好好学英语,但是也只是说说而已,担心自己毅力不足,于是乎加入了这个学习小组,毕竟大家的力量是比自己的力量要强的多。

    前两天:那个不想起呀,真的是不想呀!但是想了想自己说到就得做到。于是,起来了,但是,起床气那个大呀!给自己前两天的总结:完全没有融进去,处于自我调整阶段。

    接下来的几天:心情越来越好了,读音标越来越开心,自己学音标的激情也有了。


反思


    自己对于一个新事物总是抱着排斥的心情,总得有那么几天,自己有点小别扭,但是当自己想通了的时候,一切都变了。


感受


     小伙伴们一起学英语真的很开心,自己以后一定得改改自己的臭毛病,要多跟大家交流,一定要走出那一步!
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 38
    评论
资源包主要包含以下内容: ASP项目源码:每个资源包中都包含完整的ASP项目源码,这些源码采用了经典的ASP技术开发,结构清晰、注释详细,帮助用户轻松理解整个项目的逻辑和实现方式。通过这些源码,用户可以学习到ASP的基本语法、服务器端脚本编写方法、数据库操作、用户权限管理等关键技术。 数据库设计文件:为了方便用户更好地理解系统的后台逻辑,每个项目中都附带了完整的数据库设计文件。这些文件通常包括数据库结构图、数据表设计文档,以及示例数据SQL脚本。用户可以通过这些文件快速搭建项目所需的数据库环境,并了解各个数据表之间的关系和作用。 详细的开发文档:每个资源包都附有详细的开发文档,文档内容包括项目背景介绍、功能模块说明、系统流程图、用户界面设计以及关键代码解析等。这些文档为用户提供了深入的学习材料,使得即便是从零开始的开发者也能逐步掌握项目开发的全过程。 项目演示与使用指南:为帮助用户更好地理解和使用这些ASP项目,每个资源包中都包含项目的演示文件和使用指南。演示文件通常以视频或图文形式展示项目的主要功能和操作流程,使用指南则详细说明了如何配置开发环境、部署项目以及常见问题的解决方法。 毕业设计参考:对于正在准备毕业设计的学生来说,这些资源包是绝佳的参考材料。每个项目不仅功能完善、结构清晰,还符合常见的毕业设计要求和标准。通过这些项目,学生可以学习到如何从零开始构建一个完整的Web系统,并积累丰富的项目经验。
Write a C++ program that defines a class DateV2 that (1) Contains all the members in the class DateV1; Programming for Engineers C++ (2) Has two constructors as follows: One takes three parameters, int y, int m, int n; The other is the default constructor that takes no parameter (3) Has additional public member functions as follows: string getWeekDay(); // return the week day, for example, Sunday if day is 0, etc bool Leap(); // return if the year is leap int differFrom(DateV2& oneDate); // return the difference in days between the calling object // and the oneDate object void printDate(); // print the year, the month in English, the day, and the week day Test class DateV2 in the main function as follows: (1) Declare and set the objects today and tomorrow as in Problem 2. (2) Declare and initialize (by a constructor) an object to represent your OWN birthday. (3) Use the member function printDate to print today, tomorrow, and your birthday. (4) Output the weekday of today, tomorrow, and your own birthday. (5) Output how many days has passed since your birth (the difference between your birthday and today). Hint: i) We can use another string array to store the English name for week days (Sunday, Monday, through Saturday) ii) We know that it is Monday on Year 1, Month 1, and Day 1 iii) A good idea is to first design a function to compute the number of days that has passed since Year 1, Month 1, and Day 1, and then to use this function to compute the week day for a give date and to compute the difference between two dates. You can store the number of days for each of the 12 months in an integer array, which helps in counting the days.
05-22
```c++ #include <iostream> #include <string> using namespace std; class DateV1 { public: int year, month, day; DateV1() { year = 2021; month = 10; day = 1; } DateV1(int y, int m, int d) { year = y; month = m; day = d; } }; class DateV2 : public DateV1 { public: DateV2() : DateV1() {} DateV2(int y, int m, int d) : DateV1(y, m, d) {} string getWeekDay() { string weekdays[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; int days = countDays(); return weekdays[days % 7]; } bool Leap() { if (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)) return true; return false; } int differFrom(DateV2& oneDate) { int days = countDays() - oneDate.countDays(); return days < 0 ? -days : days; } void printDate() { string months[] = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; cout << year << "-" << months[month - 1] << "-" << day << endl; } private: int countDays() { int days = 0; for (int i = 1; i < year; i++) { if (Leap()) days += 366; else days += 365; } int monthDays[] = {31,28,31,30,31,30,31,31,30,31,30,31}; if (Leap()) monthDays[1] = 29; for (int i = 1; i < month; i++) { days += monthDays[i - 1]; } days += day - 1; return days; } }; int main() { DateV2 today(2021, 10, 1); DateV2 tomorrow(2021, 10, 2); DateV2 myBirthday(2000, 10, 1); cout << "Today's date: "; today.printDate(); cout << "Tomorrow's date: "; tomorrow.printDate(); cout << "My birthday: "; myBirthday.printDate(); cout << endl << "Weekday of today: " << today.getWeekDay() << endl; cout << "Weekday of tomorrow: " << tomorrow.getWeekDay() << endl; cout << "Weekday of my birthday: " << myBirthday.getWeekDay() << endl; cout << endl << "Days since my birthday: " << today.differFrom(myBirthday) << endl; return 0; } ```
评论 38
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值