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

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

筛选

三行解决逆序问题

摘要:解题思路:利用list的切片运算和for循环遍历输出注意事项:使用end=' ',可以实现不换行的遍历输出参考代码:a=list(map(int,input().split()))fo……

数字逆序输出

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

菜鸟编程,高手勿看

摘要:解题思路:利用while 循环来进行元素逆置注意事项:参考代码:#include<iostream>using namespace std;int main(){ int arr[10]; for (……

[编程入门]数字逆序输出

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

数字逆序输出的写法

摘要:解题思路:      一次输入10个数字,则定义一个数组元素为10的数组;后利用从右往左递降输出即可注意事项:数组长度为10,所以数组下标从0开始参考代码:#include<stdio.h>int m……

STL函数翻转

摘要:解题思路:C++STL库函数翻转注意事项:参考代码:```#include<bits/stdc++.h>using namespace std;int main(){    vector<int> a……