用Java实现模拟翻译器 用户输入英文,控制台输出对应中文。 1.要求使用Map存储英文字典,只要求10个单词即可。 2.要求可以循环使用,输入x退出程序。 3.如果查不到,提示字典中不包含该单词。
时间: 2024-03-05 13:49:04 浏览: 59
java实现英文翻译程序
5星 · 资源好评率100%
好的,我可以帮您解答这个问题。
首先,我们需要创建一个 Map 来存储英文字典。这里我们只存储 10 个单词,可以使用 HashMap 来实现。代码如下:
```java
Map<String, String> dictionary = new HashMap<>();
dictionary.put("hello", "你好");
dictionary.put("world", "世界");
dictionary.put("java", "Java语言");
dictionary.put("computer", "计算机");
dictionary.put("book", "书籍");
dictionary.put("table", "桌子");
dictionary.put("chair", "椅子");
dictionary.put("apple", "苹果");
dictionary.put("orange", "橙子");
dictionary.put("banana", "香蕉");
```
接下来,我们需要使用 Scanner 来读取用户的输入,并在 Map 中查找对应的中文释义。如果找到了,就输出对应的中文释义;如果没有找到,就输出提示信息。代码如下:
```java
Scanner scanner = new Scanner(System.in);
while (true) {
System.out.print("请输入英文单词:");
String word = scanner.nextLine().toLowerCase();
if (word.equals("x")) {
break;
}
String meaning = dictionary.get(word);
if (meaning != null) {
System.out.println("中文释义为:" + meaning);
} else {
System.out.println("字典中不包含该单词。");
}
}
```
在这个程序中,我们使用了一个死循环来不断读取用户的输入。如果用户输入的单词为 x,则退出循环;否则,我们将输入的单词转换为小写字母,并在 Map 中查找对应的中文释义。如果找到了,就输出中文释义;否则,就输出提示信息。
完整代码如下:
阅读全文