April's English

从开始写博客至今,半年的时间里,我们每天都在积累英语学习的经验。随着时间的推移,我们逐渐不再纠结于汉语翻译,而是将英语融入日常习惯中。通过精听练习,我们的注意力得到提升,为口语表达打下基础。坚持英语学习不仅塑造了我们的性格,还影响着身边的亲友。时间的积累使得英语成为生活中不可或缺的一部分。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

        回头看了一些写过的博客,从我们开始写博客起,已经有六篇了,也就是过整整半年已经过去了!英语对于我们来说,真的是细水长流!就这样一天一点,慢慢的改变着我们每个人!

        经过这么长时间的积累,相信每个人都可以发现自己的变化。从博客中就可以发现,我们不像刚开始纠结于汉语翻译,也不会忘记对他付出时间了。每天学习英语已经成为我们的习惯了!喜爱英语吗?这个不知道!但知道的是,每天肯定会主动听英语,若有几天不听,肯定会感觉别扭的!这种别扭不是愧疚,不是欠债,而是,感觉到的一种缺失!一种想要主动弥补的东西!

        我总有一种感觉,我们对英语的学习,不会随着我们将来毕业而终止,而是,会把这种好习惯,影响我们身边的朋友,亲人!从英语学习,这个上面,就可以深刻的体会到,时间说到底,是最重要的!不管什么事情,看你付出多少,可以先从时间上来判断。

        喜欢时间,虽然,自己会时不时的浪费时间。

        在这个快速发展的社会中,时间对每个人的影响不在是“物是人非”了!可以反过来说“人是物非”。虽然,我不喜欢快节奏的生活,但,提高效率是很有必要的!慢慢的培养好习惯,学会克服不良的事物。我们在学习知识时,培养我们自身的品质,对我们长远发展来说,更加的有利!对英语的坚持,已经可以体现出,我们的坚毅。一年多的只听,不说;一年多的重复,在要求我们精听以后,又重燃了激情。

        这个阶段要求“哼”,自己很少哼,偶尔哼一下,发现,很有助于集中精神,会专注听每一句话,漏听的会少一些。哼的目的,我认为是为了让我们可以集中精神,从而更好的达到精听的标准;另一方面,可能也是为了向说过渡。已经哑巴了一年多了,到了咿呀学语的时候了,到了张口说话的初期了。不管怎么样,我们还是要按要求来的,尤其是在自己不知道为什么这么要求时,更加的需要规矩。

        一口标准的口语,正在向我们招手!我们怎么舍得停下脚步呢!


#include <stdio.h> #include <windows.h> #include "time_display.h" #define MAX_TIME_STR (256) // 时间字符串最大长度 #define MAX_WEEK (7) #define MAX_MONTH (12) #define TIME_HALFDAY (12) #define TEST_ZERO (0) #define FORMAT_ERROR (0) #define TEST_ONE (1) #define TEST_FIVE (5) #define CONDITIONONE (1) #define CONDITIONTWO (2) #define CONDITIONTHREE (3) #define CONDITIONFOUR (4) #define CONDITIONFIVE (5) static const U1* u1p_sp_TIME_WEEKZH[] = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; static const U1* u1p_sp_TIME_WEEKEN[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }; static const U1* u1p_sp_TIME_WEEKJP[] = { "日", "月", "火", "水", "木", "金", "土" }; static const U1* u1p_sp_TIME_MONTHEN[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; static U4 u4_s_time_Format(U1 u1_a_format_index, SYSTEMTIME* stp_a_time_t, U1* u1p_a_time_bufferone, size_t u4_a_buf_size) { U4 u4_t_format_ret ; // 默认返回错误值 U2 u2_t_time_y; S1 s1_t_time_m; S1 s1_t_time_d; S1 s1_t_time_h24; S1 s1_t_time_min; S1 s1_t_time_sec; S1 s1_t_time_w; S1 s1_t_time_h12; const S1* s1p_t_TIME_AMPM; if (!u1p_a_time_bufferone || u4_a_buf_size < (U4)MAX_TIME_STR || !stp_a_time_t) { u4_t_format_ret= (U4)FORMAT_ERROR; // 直接返回错误 } else { // 时间变量提取 u2_t_time_y = (U2)stp_a_time_t->wYear; s1_t_time_m = (S1)stp_a_time_t->wMonth; s1_t_time_d = (S1)stp_a_time_t->wDay; s1_t_time_h24 = (S1)stp_a_time_t->wHour; s1_t_time_min = (S1)stp_a_time_t->wMinute; s1_t_time_sec = (S1)stp_a_time_t->wSecond; s1_t_time_w = (S1)stp_a_time_t->wDayOfWeek; if ((U1)TEST_ZERO == s1_t_time_h24 % (U1)TIME_HALFDAY) { s1_t_time_h12 = (U1)TIME_HALFDAY; } else { s1_t_time_h12 = s1_t_time_h24 % (U1)TIME_HALFDAY; } if (s1_t_time_h24 >= (U1)TIME_HALFDAY) { s1p_t_TIME_AMPM = "PM"; } else { s1p_t_TIME_AMPM = "AM"; } // 格式选择 switch (u1_a_format_index) { case (U4)CONDITIONONE: u4_t_format_ret = snprintf(u1p_a_time_bufferone, u4_a_buf_size, "格式1:%u年%u月%u日 %s %u点%u分%u秒", u2_t_time_y, s1_t_time_m, s1_t_time_d, u1p_sp_TIME_WEEKZH[s1_t_time_w], s1_t_time_h24, s1_t_time_min, s1_t_time_sec); break; case (U4)CONDITIONTWO: u4_t_format_ret = snprintf(u1p_a_time_bufferone, u4_a_buf_size, "格式2:%u/%u/%u %s %02u:%02u:%02u", u2_t_time_y, s1_t_time_m, s1_t_time_d, u1p_sp_TIME_WEEKZH[s1_t_time_w], s1_t_time_h24, s1_t_time_min, s1_t_time_sec); break; case (U4)CONDITIONTHREE: u4_t_format_ret = snprintf(u1p_a_time_bufferone, u4_a_buf_size, "格式3:%u/%u/%u %s %u:%02u:%02u(%s)", u2_t_time_y, s1_t_time_m, s1_t_time_d, u1p_sp_TIME_WEEKZH[s1_t_time_w], s1_t_time_h24, s1_t_time_min, s1_t_time_sec, s1p_t_TIME_AMPM); break; case (U4)CONDITIONFOUR: u4_t_format_ret = snprintf(u1p_a_time_bufferone, u4_a_buf_size, "格式4:%s, %s %u, %u %02u:%02u:%02u", u1p_sp_TIME_WEEKEN[s1_t_time_w], u1p_sp_TIME_MONTHEN[s1_t_time_m - 1], s1_t_time_d, u2_t_time_y, s1_t_time_h24, s1_t_time_min, s1_t_time_sec); break; case (U4)CONDITIONFIVE: u4_t_format_ret = snprintf(u1p_a_time_bufferone, u4_a_buf_size, "格式5:%u年%u月%u日(%s) %u:%02u:%02u(%s)", u2_t_time_y, s1_t_time_m, s1_t_time_d, u1p_sp_TIME_WEEKJP[s1_t_time_w], s1_t_time_h12, s1_t_time_min, s1_t_time_sec, s1p_t_TIME_AMPM); break; default: u4_t_format_ret = snprintf(u1p_a_time_bufferone, u4_a_buf_size, "[错误] 无效格式编号:%u", u1_a_format_index); break; } } return u4_t_format_ret; } // 显示指定格式的时间(使用核心格式化函数) void vd_g_time_Display_format(U1 u1_a_format_index) { SYSTEMTIME st_t_format_t; GetLocalTime(&st_t_format_t); U1 u1_tp_format_buffer[(U4)MAX_TIME_STR]; u4_s_time_Format(u1_a_format_index, &st_t_format_t, u1_tp_format_buffer, sizeof(u1_tp_format_buffer)); printf("%s\n", u1_tp_format_buffer); // 添加换行符 } // 显示所有格式的时间 void vd_g_time_Display_allformats(void) { U1 u1_t_allformats_i; for (u1_t_allformats_i = (U1)TEST_ONE; u1_t_allformats_i <= (U1)TEST_FIVE; ++u1_t_allformats_i) { vd_g_time_Display_format(u1_t_allformats_i); } } // 写入所有格式到文件(使用核心格式化函数) void vd_g_time_Write_allformats_to_file(void) { FILE* stp_t_file_fp; errno_t s4_t_file_err; SYSTEMTIME st_t_systemtime_t; U1 u1_t_file_i; U1 u1_tp_file_buffer[(U4)MAX_TIME_STR]; S4 s4_t_fclose_result; // 正确使用 fopen_s 需要三个参数:文件指针地址、文件名、打开模式 s4_t_file_err = fopen_s(&stp_t_file_fp, "time_log.txt", "a"); if ((S4)TEST_ONE!= s4_t_file_err || NULL == stp_t_file_fp) { printf("[错误] 无法打开 time_log.txt,错误码:%d\n", s4_t_file_err); return; } else { /*do nothing*/ } GetLocalTime(&st_t_systemtime_t); for (u1_t_file_i = 1; u1_t_file_i <= 5; ++u1_t_file_i) { u4_s_time_Format(u1_t_file_i, &st_t_systemtime_t, u1_tp_file_buffer, sizeof(u1_tp_file_buffer)); fprintf(stp_t_file_fp, "%s\n", u1_tp_file_buffer); // 添加换行符 } fprintf(stp_t_file_fp, "----------------------------------------\n\n"); // 增强分隔符 s4_t_fclose_result = fclose(stp_t_file_fp); if ((S4)TEST_ZERO != s4_t_fclose_result) { printf("[警告] 文件关闭失败\n"); } else { /*do nothing*/ } }添加英文注释,用/* */单行注释
最新发布
08-06
评论 25
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值