递归写法,无需数组,形式最简(C++) 摘要:解题思路:递归与循环的思路往往有着相似之处,递归可以解一般循环也可以解。除此之外,尽管递归逻辑上比较直白,而且写起来比较简洁(主函数只有一行),但运行速度未必有循环快。这里采用递归,在一个递归函数中一…… 题解列表 2019年03月25日 0 点赞 1 评论 1210 浏览 评分:9.9
1026: [编程入门]数字逆序输出 摘要:```cpp #include using namespace std; /*题目描述 输入10个数字,然后逆序输出。 输入格式 十个整数 输出格式 逆序输出,空格分开 样例输入 …… 题解列表 2023年02月18日 0 点赞 1 评论 229 浏览 评分:9.9
2321231232其233123232323 摘要:#include<iostream>using namespace std;int main(){ int a[10]; for(int i=0;i<10;i++) { cin>>a[i]; } f…… 题解列表 2021年08月24日 0 点赞 0 评论 222 浏览 评分:9.9
菜鸟编程,高手勿看 摘要:解题思路:利用while 循环来进行元素逆置注意事项:参考代码:#include<iostream>using namespace std;int main(){ int arr[10]; for (…… 题解列表 2024年08月23日 0 点赞 0 评论 92 浏览 评分:9.9
小白也可以看明白的哦 摘要:解题思路:先利用数组将要用的数存起来。然后利用while循环或者for循环输入数组中的元素,最后利用for循环逆向输出即可注意事项:注意不要将存入的元素直接输出。有什么问题可以下面指出来哦,大家一起进…… 题解列表 2021年11月24日 0 点赞 0 评论 249 浏览 评分:9.9
1026: [编程入门]数字逆序输出 摘要:```cpp #include using namespace std; int main() { int a[11]; for (int i = 1;i > a[i];…… 题解列表 2022年06月30日 0 点赞 0 评论 325 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int i[11]; for(int a = 0;a < 10;a ++) scanf("%d",&i…… 题解列表 2017年07月26日 0 点赞 0 评论 909 浏览 评分:9.9
数字逆序输出 摘要: #include using namespace std; int main() { int a[10], i, j; for…… 题解列表 2022年10月10日 0 点赞 0 评论 128 浏览 评分:9.9
STL函数翻转 摘要:解题思路:C++STL库函数翻转注意事项:参考代码:```#include<bits/stdc++.h>using namespace std;int main(){ vector<int> a…… 题解列表 2021年08月21日 0 点赞 0 评论 258 浏览 评分:9.9
[编程入门]数字逆序输出-题解(C++代码) 摘要:输入两个数组即可 ```cpp #include using namespace std; int main() { int a[10],b[10]; for(int i=0;i…… 题解列表 2019年09月14日 0 点赞 0 评论 1180 浏览 评分:9.9