1 @echo off 
 2 set /p str=请输入任意长度字符串:
 3 if not defined str goto :eof
 4 echo 您输入了:%str%
 5 set num=0
 6 :label
 7 set /a num+=1
 8 set str=%str:~0,-1%
 9 if defined str goto :label
10 echo 字符串长度:%num%
11 pause
View Code

相关文章:

  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-15
  • 2021-08-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2021-10-13
相关资源
相似解决方案