我有一个简单的(我希望它不会变得复杂)批处理文件,您可以在其中输入一系列字母(可能由空格分隔),并且在这种情况下,它类似于那些旧的“解码器轮”“解密它们”其中 A=1,B=2,依此类推
这是我到目前为止所拥有的,但我希望它可以找到你放在一起的东西,而不是一次一个地输入每个字母。谢谢
echo off
cls
:1
echo Enter in letters to decrypt
set /p let=
if %let%==A echo 1
if %let%==B echo 2
if %let%==C echo 3
if %let%==D echo 4
if %let%==E echo 5
if %let%==F echo 6
if %let%==G echo 7
if %let%==H echo 8
if %let%==I echo 9
if %let%==J echo 10
if %let%==K echo 11
if %let%==L echo 12
if %let%==M echo 13
if %let%==N echo 14
if %let%==O echo 15
if %let%==P echo 16
if %let%==Q echo 17
if %let%==R echo 18
if %let%==S echo 19
if %let%==T echo 20
if %let%==U echo 21
if %let%==V echo 22
if %let%==W echo 23
if %let%==X echo 24
if %let%==Y echo 25
if %let%==Z echo 26