質問編集履歴
4
ご指摘ありがとうございます。
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,4 +20,13 @@
|
|
20
20
|
|
21
21
|
}
|
22
22
|
}
|
23
|
-
```
|
23
|
+
```
|
24
|
+
追記:ご指摘いただいた皆様ありがとうございます。
|
25
|
+
The objective of the department is to perform basic scientific
|
26
|
+
research and education in the field of Information Science and
|
27
|
+
Engineering, whose importance as a research field is continuously
|
28
|
+
increasing in recent days. In particular, applying of mathematical
|
29
|
+
methodologies towards information processing and their systems, as
|
30
|
+
well as exploring basic mathematical disciplines in computer science,
|
31
|
+
are strongly deemed as immediate research needs.
|
32
|
+
このような英文の単語の種類を知りたいです。現在の状況では、重複した単語を削除できずにいます。
|
3
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
与えられたファイル中の必ず単語で区切ってある単語で、toLowerCaseで大文字小文字の区別をなくし、重複している単語を除いて単語の種類がいくつあるかを表示するプログラムを教えていただきたいです。よろしくお願いします。
|
2
2
|
|
3
|
-
```
|
3
|
+
```java
|
4
4
|
|
5
5
|
import java.io.BufferedReader;
|
6
6
|
import java.io.FileReader;
|
2
markdownを使用しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
与えられたファイル中の必ず単語で区切ってある単語で、toLowerCaseで大文字小文字の区別をなくし、重複している単語を除いて単語の種類がいくつあるかを表示するプログラムを教えていただきたいです。よろしくお願いします。
|
2
2
|
|
3
|
-
```
|
3
|
+
```
|
4
|
-
|
4
|
+
|
5
|
-
|
5
|
+
import java.io.BufferedReader;
|
6
6
|
import java.io.FileReader;
|
7
7
|
|
8
8
|
public class FileReadLine {
|
@@ -19,4 +19,5 @@
|
|
19
19
|
System.out.println( "単語数は:" + word.length );
|
20
20
|
|
21
21
|
}
|
22
|
-
}
|
22
|
+
}
|
23
|
+
```
|
1
ご指摘ありがとうございました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
与えられたファイル中の単語で、toLowerCaseで大文字小文字の区別をなくし、重複している単語を除いて単語の種類がいくつあるかを表示するプログラムを教えていただきたいです。よろしくお願いします。
|
1
|
+
与えられたファイル中の必ず単語で区切ってある単語で、toLowerCaseで大文字小文字の区別をなくし、重複している単語を除いて単語の種類がいくつあるかを表示するプログラムを教えていただきたいです。よろしくお願いします。
|
2
2
|
|
3
|
+
```java
|
4
|
+
コード
|
3
|
-
import java.io.BufferedReader;
|
5
|
+
```import java.io.BufferedReader;
|
4
6
|
import java.io.FileReader;
|
5
7
|
|
6
8
|
public class FileReadLine {
|