• <small id='qSBCD'></small><noframes id='qSBCD'>

  • <legend id='qSBCD'><style id='qSBCD'><dir id='qSBCD'><q id='qSBCD'></q></dir></style></legend>
    <tfoot id='qSBCD'></tfoot>
      <i id='qSBCD'><tr id='qSBCD'><dt id='qSBCD'><q id='qSBCD'><span id='qSBCD'><b id='qSBCD'><form id='qSBCD'><ins id='qSBCD'></ins><ul id='qSBCD'></ul><sub id='qSBCD'></sub></form><legend id='qSBCD'></legend><bdo id='qSBCD'><pre id='qSBCD'><center id='qSBCD'></center></pre></bdo></b><th id='qSBCD'></th></span></q></dt></tr></i><div id='qSBCD'><tfoot id='qSBCD'></tfoot><dl id='qSBCD'><fieldset id='qSBCD'></fieldset></dl></div>

          <bdo id='qSBCD'></bdo><ul id='qSBCD'></ul>

        如何按字母顺序找出下一个字符?

        How to find out next character alphabetically?(如何按字母顺序找出下一个字符?)
          <tbody id='zRctw'></tbody>

          • <tfoot id='zRctw'></tfoot>

              <legend id='zRctw'><style id='zRctw'><dir id='zRctw'><q id='zRctw'></q></dir></style></legend>

              <small id='zRctw'></small><noframes id='zRctw'>

              <i id='zRctw'><tr id='zRctw'><dt id='zRctw'><q id='zRctw'><span id='zRctw'><b id='zRctw'><form id='zRctw'><ins id='zRctw'></ins><ul id='zRctw'></ul><sub id='zRctw'></sub></form><legend id='zRctw'></legend><bdo id='zRctw'><pre id='zRctw'><center id='zRctw'></center></pre></bdo></b><th id='zRctw'></th></span></q></dt></tr></i><div id='zRctw'><tfoot id='zRctw'></tfoot><dl id='zRctw'><fieldset id='zRctw'></fieldset></dl></div>
                <bdo id='zRctw'></bdo><ul id='zRctw'></ul>
                • 本文介绍了如何按字母顺序找出下一个字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  我们如何找出输入字符的下一个字符.例如,如果我输入了字符b",那么如何得到答案c"?

                  How we can find out the next character of the entered one. For example, if I entered the character "b" then how do I get the answer "c"?

                  推荐答案

                  试试这个:

                  char letter = 'c';
                  
                  if (letter == 'z')
                      nextChar = 'a';
                  else if (letter == 'Z')
                      nextChar = 'A';
                  
                  else
                      nextChar = (char)(((int)letter) + 1);
                  

                  这样,当字符是字母表的最后一个时,您就不会遇到麻烦.

                  This way you have no trouble when the char is the last of the alphabet.

                  这篇关于如何按字母顺序找出下一个字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)

                  <small id='tS1h7'></small><noframes id='tS1h7'>

                  • <i id='tS1h7'><tr id='tS1h7'><dt id='tS1h7'><q id='tS1h7'><span id='tS1h7'><b id='tS1h7'><form id='tS1h7'><ins id='tS1h7'></ins><ul id='tS1h7'></ul><sub id='tS1h7'></sub></form><legend id='tS1h7'></legend><bdo id='tS1h7'><pre id='tS1h7'><center id='tS1h7'></center></pre></bdo></b><th id='tS1h7'></th></span></q></dt></tr></i><div id='tS1h7'><tfoot id='tS1h7'></tfoot><dl id='tS1h7'><fieldset id='tS1h7'></fieldset></dl></div>
                      <bdo id='tS1h7'></bdo><ul id='tS1h7'></ul>
                      <tfoot id='tS1h7'></tfoot>
                          <tbody id='tS1h7'></tbody>

                            <legend id='tS1h7'><style id='tS1h7'><dir id='tS1h7'><q id='tS1h7'></q></dir></style></legend>