非常简单(看不懂打我) 摘要:解题思路:输入后将循环倒着之后输出就好了注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[15]; for(…… 题解列表 2023年05月18日 0 点赞 0 评论 82 浏览 评分:0.0
1026题 : 数字逆序输出 摘要:# 自己写的代码 ```c #include int main() { int a[10]; int temp; for(int i=0;i=0;i--){ pri…… 题解列表 2023年05月06日 0 点赞 0 评论 114 浏览 评分: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
c语言 ,这样做才简单!! 摘要:解题思路:基础C语言注意事项:无参考代码:#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<10;i++) scanf("%d",&a…… 题解列表 2023年03月01日 0 点赞 0 评论 136 浏览 评分:0.0
[编程入门]数字逆序输出-题解(C语言代码) 摘要:解题思路:1.题目要求是输入十个整数。2.所以我们定义数组长度为10就可以了。3.利用for循环输入与输出。注意事项:1.注意数组的存储是从下标0开始。2.假设我们输入11到20,存储方式如下。#in…… 题解列表 2023年02月25日 0 点赞 0 评论 105 浏览 评分:9.9
1026: [编程入门]数字逆序输出 摘要:```cpp #include using namespace std; /*题目描述 输入10个数字,然后逆序输出。 输入格式 十个整数 输出格式 逆序输出,空格分开 样例输入 …… 题解列表 2023年02月18日 0 点赞 1 评论 223 浏览 评分:9.9
数字逆序输出(C语言指针) 摘要:解题思路:通过指针解决,通俗易懂注意事项:见代码注释参考代码:#include<stdio.h> //输入10个数字,然后逆序输出。 int main(){ int a[10] = {0};/…… 题解列表 2023年01月25日 0 点赞 1 评论 310 浏览 评分:8.0
编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main() { int a[10]; for(in…… 题解列表 2023年01月07日 0 点赞 0 评论 81 浏览 评分:0.0
<指针练习>数字逆序输出(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int* p = &a[9];//定义指针p指向最后一个元素; for (int i = …… 题解列表 2023年01月02日 0 点赞 0 评论 182 浏览 评分:9.9
[编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,j; for(i=0;i<10;i++) { scanf("%d",&a[i]); }…… 题解列表 2022年12月22日 0 点赞 0 评论 138 浏览 评分:9.9