gpt4 book ai didi

puzzle - 编程之谜 : Counting down without subtracting

转载 作者:行者123 更新时间:2023-12-03 13:02:16 26 4
gpt4 key购买 nike

关闭。这个问题是off-topic .它目前不接受答案。












想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。

9年前关闭。




Improve this question




好的,以示例为目标:执行此操作的命令行应用程序:

倒计时.exe 7

打印 7 6 5 4 3 2 1

不允许任何形式的减法(包括使用减号)或字符串反转。

waaaaay 显然太容易了 :-) 答案概述(至少是原则)

  • 通过添加和递归
  • 通过使用模
  • 通过插入和弹出,(也许是最明显的?)
  • 通过使用溢出
  • 通过反复试验(也许是最不明显的?)
  • 最佳答案

    x = param;
    while (x > 0) {
    print x;
    x = (x + param) mod (param + 1);
    }

    关于puzzle - 编程之谜 : Counting down without subtracting,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/763832/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com