每天学一点英语

词汇预览:

snooker / billiard  台球

bowling 保龄球

softball  垒球

volleyball 排球

 rugby 橄榄球

field hockey 曲棍球

badminton / shuttlecock 羽毛球 

field/pitch 足球场

basketball court 篮球场

Olympic trail 奥运选拔赛

Olympic Anthem 奥运会会歌

Olympic delegation 奥运代表团

mascot  吉祥物

opening / closing ceremony 开闭幕式



referee 裁判

starter  发令员

timekeeper 计时员

scorer 记分员

cheerleader 拉拉队长


径赛项目  event on track /track event


sprint 短跑 middle distance race 中距离跑 long distance race 长跑

100-meter dash 100米跑

200-meter dash 

400-meter relay 400 米接力

800-meter race 800米跑

the marathon race 马拉松

walking race 竞走

100-meter low hurdle 100米低栏


田赛项目 event in field / field event


jumping and throwing 跳跃和投掷

pole vault 撑杆跳

the high jump 跳高

the long jump 跳远

the discus throw 掷铁饼

the shot-put 推铅球

javelin throw 掷标枪

throwing the hammer 掷链锤



a track and field competition 田径比赛


犯规术语


flagrant foul 恶意犯规

personal foul 个人犯规

team foul 全队累计犯规

double foul 双方犯规


charging foul 撞人犯规

holding foul 阻挡犯规

pushing foul 推人犯规

foul out / disqualification 犯满离场

technical foul 技术犯规


各种游泳的表达法

breast stroke 蛙泳

back stroke 仰泳

side stroke 侧泳

butterfly stroke 蝶泳


balance beam 平衡木

off-job training 脱产培训 

in-job training 在职培训



易出错常用表达:

from north to south 从南到北 而不是从北到南

back and forth 来来往往

sweet  and sour 酸甜苦乐

right and left 从左到右

old and new 新旧

rich and poor 贫富

ebb and flow 潮起潮落


will a duck swim 那还用问吗?/ 当然愿意啦

how goes the enemy ?几点了

what are you smoking ?你这是什么意思

what cooking?出什么事了?

what‘s eating you?你怎么了?

对于初者来说,每天一点 Java 是非常明智的选择。循序渐进地掌握基础知识,逐步深入,能够帮助你建立扎实的编程基础。下面是一个适合初者的每日习计划建议,以及一些关键知识点的讲解。 --- ### ✅ 每日习建议(第一周示例): #### **第1天:Java 环境搭建与第一个程序** - 安装 JDK(推荐使用 OpenJDK 11 或 17) - 安装 IDE(如 IntelliJ IDEA 或 Eclipse) - 编写并运行你的第一个 Java 程序 ```java public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } } ``` **解释**: - `public class HelloWorld`:定义一个名为 `HelloWorld` 的类,必须与文件名一致。 - `main` 方法是程序入口点,JVM 从这里开始执行。 - `System.out.println()` 用于输出内容到控制台。 --- #### **第2天:变量与数据类型** 习 Java 中的基本数据类型(8种原始类型)和变量声明。 ```java public class VariablesDemo { public static void main(String[] args) { int age = 25; double price = 19.99; char grade = 'A'; boolean isActive = true; String name = "Alice"; // 字符串不是原始类型,是对象 System.out.println("Name: " + name); System.out.println("Age: " + age); } } ``` **解释**: - Java 是强类型语言,变量必须先声明再使用。 - 常见类型:`int`, `double`, `boolean`, `char`, `byte`, `short`, `long`, `float`。 - `String` 是引用类型,表示一串字符。 --- #### **第3天:运算符与表达式** 习算术、比较、逻辑运算符。 ```java public class OperatorsDemo { public static void main(String[] args) { int a = 10, b = 3; System.out.println("a + b = " + (a + b)); System.out.println("a > b ? " + (a > b)); System.out.println("a == b ? " + (a == b)); System.out.println("a != b ? " + (a != b)); } } ``` --- #### **第4天:控制流程(if、switch)** ```java public class ControlFlowDemo { public static void main(String[] args) { int score = 85; if (score >= 90) { System.out.println("A"); } else if (score >= 80) { System.out.println("B"); } else { System.out.println("C"); } } } ``` --- #### **第5天:循环结构(for、while)** ```java public class LoopDemo { public static void main(String[] args) { // 打印 1 到 5 for (int i = 1; i <= 5; i++) { System.out.println(i); } // while 示例 int j = 1; while (j <= 5) { System.out.println("While: " + j); j++; } } } ``` --- #### **第6天:数组基础** ```java public class ArrayDemo { public static void main(String[] args) { int[] numbers = {1, 2, 3, 4, 5}; for (int i = 0; i < numbers.length; i++) { System.out.println(numbers[i]); } // 增强 for 循环 for (int num : numbers) { System.out.println("Value: " + num); } } } ``` --- #### **第7天:方法(函数)定义与调用** ```java public class MethodDemo { public static void main(String[] args) { sayHello(); int sum = add(5, 3); System.out.println("Sum: " + sum); } public static void sayHello() { System.out.println("Hello from method!"); } public static int add(int a, int b) { return a + b; } } ``` --- ### 📘 习资源推荐: - **书籍**:《Java 核心技术 卷I》(原书第12版) - **网站**:[菜鸟教程](https://www.runoob.com/java)、[W3Schools Java](https://www.w3schools.com/java/) - **练习平台**:LeetCode(简单题)、牛客网、洛谷 --- ### 💡 小贴士: - 每天坚持写代码,哪怕只有 10 行。 - 遇到错误不要怕,会阅读异常信息。 - 使用 Git 记录你的习过程(可选但推荐)。 ---
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值