本文介绍了输出错误..的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 这是我的代码,我不知道为什么当我输入时让我们说x = 3而n = 0则给出3. This is my code and i dont know why when i enter let''s say x=3 and n=0 it gives 3. 展开 | 选择 | Wrap | Line数字 推荐答案 此代码: This code: 展开 | 选择 | Wrap | 行号 那是因为do while循环保证至少运行一次。改为使用while循环。That''s because a do while loop is guaranteed to run at least once. Use a while loop instead. 搞定了。我很糟糕,我一边做,一边做,但是很抱歉,而且很遗憾Got it.My bad i readed while and while but it was do-while and while sorry 这篇关于输出错误..的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-28 03:47