题解 1026: [编程入门]数字逆序输出

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

指针遍历解决

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;//输入10个数字,然后逆序输出。int main(){    int arr[10] = {……

递归 数字逆序输出

摘要: 参考代码:#include"stdio.h" typedef int Arr[111]; void fun (int *a,int len){  if(len<0)  return ; ……

reverse()函数逆序

摘要:解题思路:运用<algorithm>里面的头文件reverse来逆序注意:reverse( 首地址,尾地址 + 1 )先举个小例子吧!下面是本题代码!!给个评论吧!……

c语言 ,这样做才简单!!

摘要:解题思路:基础C语言注意事项:无参考代码:#include<stdio.h>int main(){    int i,a[10];    for(i=0;i<10;i++) scanf("%d",&a……