如何允许用户将数据添加到字典中

如何允许用户将数据添加到字典中

本文介绍了如何允许用户将数据添加到字典中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! class Program { static string userInput; 静态字符串val; 静态字符串键; static Dictionary< string,string> dict = new Dictionary< string,string>(); static void Main(string [] args) { userInput = Console.ReadLine(); string [] wordbits = userInput.Split(''); for(int i = 0; i< wordbits.Length - 1; i + = 2) { key = wordbits [一世]; val = wordbits [(i + 1)]; dict.Add(key,val); } Console.Clear(); Console.WriteLine($你输入{userInput}); } } } 我尝试了什么: 我正在尝试制作一种方法,允许用户将数据输入字典(即10次最喜欢的食物然后在5比1之间进行评分)。 然后我将它显示给用户最喜欢的最少赞。 任何提示都将受到赞赏。 我是初学者所以如果这是很容易让你回答Sry提前 谢谢解决方案 class Program { static string userInput; static string val; static string key; static Dictionary<string, string> dict = new Dictionary<string, string>(); static void Main(string[] args) { userInput = Console.ReadLine(); string[] wordbits = userInput.Split(' '); for (int i = 0; i < wordbits.Length - 1; i += 2) { key = wordbits[i]; val = wordbits[(i + 1)]; dict.Add(key, val); } Console.Clear(); Console.WriteLine($"you typed in {userInput}"); } }}What I have tried:I am trying to make a method that allow user to enter data into dictionary (i.e. 10 times favorite food and then rate between 5 to 1).then I display it to user most fav to least fav.any hint will be appreciated.I am a beginner so if this is to easy for you to answer " Sry in advance"THANKS 解决方案 这篇关于如何允许用户将数据添加到字典中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-14 07:06