我是C#的新手。掃描字符串數組
如何獲取用戶輸入並將每個字母作爲單獨的實體保存在數組中。
我想掃描整個數組,找到一個特定的字符序列作爲起點。
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please enter Nitrogenous base sequence");
string[] sequence = new string[]{Console.ReadLine()};
foreach(string a in sequence)
{
if(a=="TATAAT")
{
Console.WriteLine("YAAY");
}
else
{
Console.WriteLine("NO");
我想你可能想改爲使用Console.ReadKey。 – Casey