c#-如何检查输入是否等于字符串
发布时间:2022-08-29 21:56:46 348
相关标签: # flask
我正在尝试制作一个友好的ai,但我需要能够检测输入是否等于字符串。我尝试了很多事情,但都没有成功。
这是我目前的代码…;)
namespace Game
{
public static class Program
{
public static string name;
public static string enteredCommand;
public static int commanddomath = 1;
static void Main()
{
Console.Title = "Phil";
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(" ");
Console.WriteLine(" / / / /");
Console.WriteLine(" |@| |@|");
Console.WriteLine(" --_____-- ");
Console.WriteLine(" ////// ");
Console.WriteLine(" ");
Console.WriteLine("Hello, my name is Phil");
Console.WriteLine("What is your name");
name = Console.ReadLine();
Console.WriteLine("Hello, " + name);
// Console.WriteLine("What do you want me to do?");
// enteredCommand = Console.ReadLine();
// if (enteredCommand = 1)
// {
// }
Console.ReadKey();
}
}
}
感谢您的帮助:)
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报