Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试打印一系列整数(在用户的 2 个输入整数之间找到的所有正整数),我需要按照用户输入的顺序来执行。例如:
对于输入:4,9 输出将是:4 5 6 7 8 9
对于输入:9,4,输出为:9 8 7 6 5 4
我不允许使用任何数组/字符串/函数,只能使用基本的 C 命令。有人有什么想法吗?
由于这很可能是一个学习练习,因此需要考虑以下几点:
因此,您的程序结构将如下所示:
if
for
while
do
这应该足以完成您的任务。祝你好运!