Похожие чаты

This algorithm shows the position of the letter in the

alphabet. How to do the opposite when there is a number, and you need a letter?

public static void main(String args[]) {

String s = "HUYES";
String t = "";
for (int i = 0; i < s.length(); ++i) {
char ch = s.charAt(i);
if (Character.isLetter(ch)) { // check if the character is a letter
if (!t.isEmpty()) {
t += " ";
}
int n = (int) ch - (int) 'A'; // if you want to check, then add 'A'+ 1. Where the beginning of the alphabet begins with 1
t += String.valueOf(n);
}
}
System.out.println(t);
}

6 ответов

19 просмотров

Get ascii code of 'A', add the number and then use the ascii code to convert to char char c = ((int)'A' + num)

Manav | avoid unnecessary messaging me
^ this can be a source of errors. So make sure you...

i just need to have a number from 0-25 and convert to alphabetical order and get the letter

holy moly, that's so ... cryptic. I would never understood what this code is doing without extra description. Why not just do it more straightforward? class EnglishAlphabet { static String alphabet = "abcdefghijklmnopqrstuvwxyz"; int positionInAlphabet(char letter) { return alphabet.indexOf(letter); } Character letterAtPosition(int pos) { if (0 <= pos && pos < alphabet.length()) { return alphabet.charAt(pos); } else { return null; // or throw if you want to be NPE-free } } } More readable. More maintainable - just imagine that some day comes PO and says "Ok, now we need to support Spanish and French".

Похожие вопросы

Обсуждают сегодня

Ready for some fun AND a chance to win TKO Tokens? Join us for exciting minigames in our Telegram group! 🕒 Don’t miss out—games start on today 25 October 2024, at 8 PM! Ge...
Milkyway | Tokocrypto
255
Мужики и девушки, привет) в Вelphi xe7 в настройках во вкладке "Editor Options" далее " Color" есть список: "Elements", открыв который мы можем настраивать отображение разных...
Kraszx
14
is that okay?
Samurai 🇯🇵
21
Добрый вечер. Есть вопрос, а может и предложение. Был у меня диалог в другой группе о делфи и я задался вопросом: "А нельзя ли в делфи цвет //коментария и {комментария} сде...
Kraszx
24
How about the project bro Likes the community not that active ?
🅿️abby_FX
19
Guys, Donald Trump or Kamala Harris? It does not matter for Bitcoin in the long run!! 2020 Election: After Joe Biden's victory in November 2020, Bitcoin steadily rose from...
Sabah Shabu
1
как быть с принтером? такой подход прокатит?
zamtmn
12
Всем привет! Подскажи, пожалуйста, как передать в TComboBox сразу значение и id записи. На Delphi я делал так: ComboBox1.Items.AddObject('Какое-то значение', Pointer(id запис...
Евгений
13
Мдя, прикол, боевая сборка запускается (именно под отладчиком) после F9 примерно полторы минуты (97 секунд если быть точным). Начал копать - проблема детектится сразу - зависа...
Александр (Rouse_) Багель
38
@brucezli Any info regarding ETA on updates?
Old Man Tom
10
Карта сайта