Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何.StartsWith();在 RAPTOR 流程图命令上转换 C# 命令吗?
.StartsWith();
string unos = Console.ReadLine().ToUpper(); if (unos.StartsWith("KR")) kr++; else if (unos.StartsWith("ZG")) zg++;`
这是一个示例。
它是关于 raptor 的限制之一,为了比较字母,您需要将其转换为 ASCII 值,然后使用 (to_ascii) 函数进行比较。
希望这有助于总帐