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

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

筛选

reverse函数解

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<algorithm>using namespace std;int main(){ ……

折半法逆序输出

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,len=10,t;    int arr[10];    for(i=0;i<10;i++){……

1026-数字逆序输出

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; for(int i=0;i<10;i++)   ……

c数字逆序输出

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

一看就会的数字逆序输出

摘要:解题思路:定义两个数组,一个存放原数列,一个存放逆序后的数列注意事项:参考代码:#include<stdio.h>void main(){    int i,a[10],b[10],k;    for……

递归 数字逆序输出

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

数字逆序输出JAVA

摘要:解题思路:注意事项:参考代码:import java.text.DecimalFormat;import java.util.Arrays;import java.util.Scanner;publi……