CodeGym/Java Course/Java のマルチスレッドプログラミング/StringBuilder と StringBuffer の使い方を練習する

StringBuilder と StringBuffer の使い方を練習する

使用可能
StringBuilder と StringBuffer の使い方を練習する - 1

「こんにちは、アミーゴ!」

「こんにちは、ディエゴ。あなたがやっている事はすべて私自身の利益になると決めたのです。」

「タスクをありがとう。喜んでやらせていただきます。」

24
タスク
Java Multithreading,  レベル 2レッスン 9
ロック未解除
Inverted words
In the main method, read the name of a file that contains words separated by spaces from the console. In the text of the file, find all pairs of words that are mirror images of each other. Add them to result. Use StringBuilder. The file encoding is UTF-8.
12
タスク
Java Multithreading,  レベル 2レッスン 9
ロック未解除
Build a WHERE query
Build part of a WHERE query using StringBuilder. If a parameter is null, then it shouldn't be included in the query. Example: {name=Johnson, country=United States, city=Los Angeles, age=null} Result: name = 'Johnson' and country = 'United States' and city = 'Los Angeles'
24
タスク
Java Multithreading,  レベル 2レッスン 9
ロック未解除
Make a word chain
In the main method, read the name of a file that contains words separated by spaces from the console. In the getLine method, use StringBuilder to order all the words as follows: the last letter of a word must match the first letter of the next word (ignore case). Each word should be used once.
コメント
  • 人気
  • 新規
  • 古い
コメントを残すには、サインインしている必要があります
このページにはまだコメントがありません