字符串加减法程序

我写了一个程序,我想对字符串进行加减运算,其中所有字符串的长度都是四,看起来像“+002”、“+569”、“-022”、“-789”等。我已经尝试在不使用任何乘法、除法或余数的情况下执行此操作,但仅使用加法和减法作为运算,但我的问题是某些情况还不起作用,我不明白为什么或如何解决它因为用这么长的代码很难看清问题究竟出在哪里以及我应该改变什么。所以这里是相关的方法:


public static String add(String s1, String s2) {

        int number;

        int[] s = new int[4];

        String result = "";

        if (s1.contains("+") && s2.contains("+")) {

            result = "+";

            for (int i = 1; i < s1.length(); ++i) {

                if (!(s1.charAt(i) == 0 || s2.charAt(i) == 0)) {

                    if ((int) (s1.charAt(i)) + (int) (s2.charAt(i)) - 96 < 10) s[i] = (int) (s1.charAt(i)) + (int) (s2.charAt(i)) - 96;

                    else {

                        s[i] = (s1.charAt(i)) + (int) (s2.charAt(i)) - 106;

                    ++s[i - 1];

                    }

                }

                else if (s1.charAt(i) != 0 && s2.charAt(i) != 0) {

                    s[i] = (int) (s1.charAt(i)) + (int) (s2.charAt(i)) - 96;

                }

            }

        }

        else if (s1.contains("-") && s1.contains("-")) {

            result = "-";

            for (int i = 1; i < s1.length(); ++i) {

                if ((!(s1.charAt(i) == 0 || s2.charAt(i) == 0))) {

                    if ((int) (s1.charAt(i)) + (int) (s2.charAt(i)) - 96 < 10) s[i] = (int) (s1.charAt(i)) + (int) (s2.charAt(i)) - 96;

                    else {

                        s[i] = (s1.charAt(i)) + (int) (s2.charAt(i)) - 106;

                    ++s[i - 1];

                    }

                }

                else if (s1.charAt(i) != 0 && s2.charAt(i) != 0) {

                    s[i] = (int) (s1.charAt(i)) + (int) (s2.charAt(i)) - 96;

                }

            }

        }


浮云间
浏览 146回答 3
3回答

扬帆大鱼

由于您可以使用 charAt(),您可以自行转换字符串:// String s1 = "+123";int d1 = (s1.charAt(1) - '0') * 100;int d2 = (s1.charAt(2) - '0') * 10;int d3 = (s1.charAt(3) - '0');int num = d1 + d2 + d3;然后你可以用这个数字来计算。

暮色呼如

您提到某些情况不起作用,您不确定为什么。我认为这与您的 if 语句有关。例如第一个 if 在第一个循环中:&nbsp;if&nbsp;(!(s1.charAt(i)&nbsp;==&nbsp;0&nbsp;||&nbsp;s2.charAt(i)&nbsp;==&nbsp;0))&nbsp;{...}将在与 else 完全相同的情况下评估为真,如果紧随其后:else&nbsp;if&nbsp;(s1.charAt(i)&nbsp;!=&nbsp;0&nbsp;&&&nbsp;s2.charAt(i)&nbsp;!=&nbsp;0)&nbsp;{...}(因为在第一种情况下,您首先评估任一值是否等于零,然后反转结果)。然后第一个嵌套 if 在第一个循环中:if&nbsp;((int)&nbsp;(s1.charAt(i))&nbsp;+&nbsp;(int)&nbsp;(s2.charAt(i))&nbsp;-&nbsp;96&nbsp;<&nbsp;10)&nbsp;{...}在我看来,这将始终评估为真,因为您只是从两个字符串中取出一个字符。所以加法可能的最高结果是 18。从它减去 96,它肯定会小于 10。为了调试它并找到问题,我建议您首先仔细检查所有 if 语句。在评论中写下,甚至制作一个图表来确定何时应该达到某个步骤以及在那里应该发生什么。此外,如果您还没有使用可能有帮助的 IDE,因为它会提醒您注意逻辑中的一些问题。

慕沐林林

这行得通吗?private static String add(String s1, String s2) {&nbsp; &nbsp; return intToString(stringToInt(s1) + stringToInt(s2));}private static int stringToInt(String string) {&nbsp; &nbsp; int multiplicand;&nbsp; &nbsp; int i = 0;&nbsp; &nbsp; multiplicand = string.charAt(0) == '+' ? 1 : -1;&nbsp; &nbsp; i += (string.charAt(1) - '0') * 100;&nbsp; &nbsp; i += (string.charAt(2) - '0') * 10;&nbsp; &nbsp; i += (string.charAt(3) - '0');&nbsp; &nbsp; return i * multiplicand;}private static String intToString(int i) {&nbsp; &nbsp; StringBuilder sb = new StringBuilder();&nbsp; &nbsp; sb.append(i >= 0 ? "+" : "-");&nbsp; &nbsp; i = Math.abs(i);&nbsp; &nbsp; sb.append(i / 100);&nbsp; &nbsp; sb.append(i / 10 - (i / 100 * 10));&nbsp; &nbsp; sb.append(i - (i / 10 * 10));&nbsp; &nbsp; return sb.toString();}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java