旧物有情 # 不用库函数数字逆序输出 摘要:``` #include using namespace std; int main(){ int a[10]; for(int i=9; i>=0; i…… 题解列表 2024年10月10日 0 点赞 0 评论 80 浏览 评分:0.0
最简单的傻瓜题解,瓜保熟,看一眼不会我倒立洗头 摘要:解题思路:最呆瓜简单直接的一种方法,就是一个一个去定义每一个字符串,然后赋值上去,再按照原顺序的倒序排列给输出出来。看着最终答案效果写过程也是没谁了哈哈哈O.o此想法由糯智本人脑抽提出,由强力室友完善…… 题解列表 2024年09月20日 0 点赞 3 评论 202 浏览 评分:9.9
菜鸟编程,高手勿看 摘要:解题思路:利用while 循环来进行元素逆置注意事项:参考代码:#include<iostream>using namespace std;int main(){ int arr[10]; for (…… 题解列表 2024年08月23日 0 点赞 0 评论 83 浏览 评分:9.9
C++速度求解,够取巧 摘要:解题思路:暴力!按题目求解注意事项: 注意有局限性,万一人家输入的数组是乱序排放呢参考代码:#include <bits/stdc++.h>using namespace std;#define N …… 题解列表 2024年03月21日 0 点赞 0 评论 111 浏览 评分:0.0
简单方法实现数字逆序输出 摘要:解题思路:创建数组存储数据,利用两个for循环即可实现第一个for循环:用于拿到用户输入的10个数字,存入数组第二个for循环:倒着输出创建的数组注意事项:参考代码:#include<iostream…… 题解列表 2024年01月18日 0 点赞 0 评论 86 浏览 评分:0.0
指针遍历解决 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;//输入10个数字,然后逆序输出。int main(){ int arr[10] = {…… 题解列表 2023年12月26日 0 点赞 0 评论 47 浏览 评分:0.0
数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; for(int i=0;i<10;i++){ …… 题解列表 2023年07月11日 0 点赞 0 评论 120 浏览 评分:0.0
非常简单(看不懂打我) 摘要:解题思路:输入后将循环倒着之后输出就好了注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[15]; for(…… 题解列表 2023年05月18日 0 点赞 0 评论 82 浏览 评分:0.0
c++解题思路 摘要:```cpp #include #define N 10 using namespace std; int temp=0; int main() { int a[N];…… 题解列表 2023年03月08日 0 点赞 0 评论 152 浏览 评分:9.9
1026: [编程入门]数字逆序输出 摘要:```cpp #include using namespace std; /*题目描述 输入10个数字,然后逆序输出。 输入格式 十个整数 输出格式 逆序输出,空格分开 样例输入 …… 题解列表 2023年02月18日 0 点赞 1 评论 222 浏览 评分:9.9