我的存储字符串为我提供了除了最后一位之外所有想要的数字,我知道这是因为最后一位没有什么可与右边进行比较。我可以以某种方式将最后一位数字添加到字符串的末尾,

    for(int i = 0;i < othercontent.length -1 ;i++ )
    {
        if(othercontent[i] != othercontent[i + 1])
        {
            storage = storage + othercontent[i];

        }
    }

最佳答案

for(int i = 0; i < othercontent.length ;i++ )
{
    if(i == 0 || othercontent[i] != othercontent[i - 1])
    {
        storage = storage + othercontent[i];
    }
}

09-29 23:44