Как split-ва, когато имаме два различни разделителя, които се подават - в единия случай "-", а в другия - ":"?
Здравейте, някой знае ли как се пише лист или масив, когато от конзолата има вероятност да му подадат два различни стринга?
В единия случай ще е List<string> text = Console.ReadLine().Split("-").ToList()м
В другия ще е List<string> text = Console.ReadLine().Split(":").ToList();
Как да се изпише листът, за да идентифицира програмата кой от двата типа чете?
Ето и условието:
Your task is to take every game and add it with its price. The games may have DLCs (downloadable content), which you should also add. The games will be given in the following format "{game}-{price}". The game names will contain only letters, digits and spaces. The DLCs will be given in the following format "{game}:{DLC}". All the of the inputs will be divided by ", ". You should only add the DLC if the game already exists. The DLC increases the game price by 20%.
After you have processed all the games you should lower the prices of all the games by 20% if they don't have a DLC and by 50% if they do. After this you should print the games with DLCs, ordered ascending by price, and then all the games without DLCs, ordered descending by price, in the following format:
-
If the game has a DLC:
-
"{game} - {DLC} - {price}"
-
-
If the game doesn't have a DLC:
-
"{game} - {price}"
-
The prices should be formatted to the second decimal place.
Да, това го бях направила, просто не знам как да го напиша, когато се получава после от конзолата - как да разбера кой вид лист ми подава.
Мога да видя задачата по-подробно утре, но това, което ми хрумва е че първо може да проверяваш дали се съдържа : или - и тогава да сплитваш или след като сплитнеш да провериш дали резултатът е инт.
С text.Contains('-') не става, не знам как да проверявам, това точно питах. Ако знаеш как, ще съм ти благодарна.