本文介绍了如何让java一次读取多个字符并将其更改为整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如,如果A = 0,则B = 1,C = 2且D = 3。如果我输入'A',输出将为'0'。
这对于一个字符来说很容易,但是如果我在一个没有空格的情况下输入4个字符,如'BACC',输出应该是'1022'。但是我该怎么做?请尽快帮助
我尝试过的事情:
我没有'尝试任何东西,因为我是新手java,请尽可能简单的答案,所以我可以理解。
解决方案
For example if A = 0, B=1, C=2 and D =3. If i input 'A' , the output would be '0'.
This is easy for one character, but how about if i input 4 characters at one without space like the 'BACC', the output should be '1022'. But how do i do that?. Pls help asap
What I have tried:
I haven't tried anything as im new to java, pls make the answer as simple as possible so i can understand.
解决方案
这篇关于如何让java一次读取多个字符并将其更改为整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!