gpt4 book ai didi

c - 在 C 中递归地反转多个用户输入

转载 作者:行者123 更新时间:2023-11-30 21:11:03 24 4
gpt4 key购买 nike

我想知道除了在 C 中使用数组、arrayLists、linkedLists 之外是否还有其他方法来反转某些用户输入。

例如,如果用户输入一定数量的数字,并以 10 结束输入,是否可以使用递归而不是多元素数据结构来反转这些数字?

例如,

456710

变成了

7654

非常感谢您的指导。谢谢。

最佳答案

#include <stdio.h>

void rec_f(void){
int n;
scanf("%d", &n);
if(n != 10){
rec_f();
printf("%d ", n);
}
}

int main(){
rec_f();
return 0;
}

关于c - 在 C 中递归地反转多个用户输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26080994/

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