我希望用户只能得到是或否作为答案.
这就是我提出的
static public bool askBool(string question){ try { Console.Write(question); return Console.Readline() == "y"; } catch (Exception) { throw new FormatException("Only y or n Allowed"); }}
问题是输入任何其他字母然后’y’将导致错误,我怎样才能最好地解决这个问题?
先感谢您.
编辑(来自评论问题)
try{ Console.Write(question); return int.Parse(Console.Readline());}catch (Exception){ throw new FormatException("Please Enter a Number");}解决方法
Here the method will only return true or false if user has entered true or false.If user enters any word the loop will just continue to ask him for input until he enters
y
orn
您可以通过执行以下更改来尝试
static public bool askBool(string question) { bool boolToReturn = false; Console.Write(question); while (true) { string ans = Console.Readline(); if (ans != null && ans == "y") { boolToReturn = true; break; } else if ( ans != null && ans == "n") { boolToReturn = false; break; } else { Console.Write("Only y or n Allowed"); } } return boolToReturn; }`
Answer to second question:-
` public static int askInt(string question) { Int intToReturn = false; Console.Write(question); while (true) { string ans = Console.Readline(); if (int.TryParse(and,out intToreturn)) break; else Console.Write("Only number Allowed"); } return intToReturn; }`总结
以上是内存溢出为你收集整理的c# – 只允许是或否作为答案全部内容,希望文章能够帮你解决c# – 只允许是或否作为答案所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)