[编程入门]数字逆序输出--题解(容易理解版) 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))for i in range(1,len(a)+1): print(a[-i],end=" ")…… 题解列表 2021年11月21日 0 点赞 0 评论 420 浏览 评分:6.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2021年11月17日 0 点赞 0 评论 202 浏览 评分:0.0
酱紫卷,最后一题! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d%d%d%d%d%d%d%d%d…… 题解列表 2021年11月15日 0 点赞 0 评论 237 浏览 评分:0.0
数字逆序输出 摘要:解题思路:1.利用数组来储存十个数字;2.需要用到for循环来完成逆序输出;注意事项:需要理解数组用法参考代码:#include<stdio.h>int main(){ int a[10],i; fo…… 题解列表 2021年11月10日 0 点赞 0 评论 152 浏览 评分:0.0
1026就是;铺C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int a[10],i;for(i=0;i<10;i++){scanf("%d",&a[i]);}for(i=9…… 题解列表 2021年11月05日 0 点赞 0 评论 122 浏览 评分:0.0
[编程入门]数字逆序输出-----详解(Python) 摘要:reverse---可以将列表逆序 ```python team=list(map(int,input().split())) team.reverse() for i in team: …… 题解列表 2021年11月05日 0 点赞 0 评论 661 浏览 评分:9.3
数字逆序输出简便方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d%d%d%d%d%d%d%d%d…… 题解列表 2021年11月04日 0 点赞 0 评论 91 浏览 评分:2.0
数字逆序输出,秒掉 摘要:解题思路:,我们要知道,逆序输出的定义。如:输入1 4 2 5 3 5这六个数,输出就是5 3 5 2 4 1。逆序输出并不代表按照数字大小等因素来决定,只是将它从右到左输出出来注意事项:参考代码:#…… 题解列表 2021年11月03日 0 点赞 1 评论 139 浏览 评分:9.9
适合新手理解的c++ 摘要:#include<iostream>using namespace std;int main(){ int i,j,arr[10]; int start=0; int end=sizeof(arr)…… 题解列表 2021年10月31日 0 点赞 0 评论 238 浏览 评分:0.0
1026: [编程入门]数字逆序输出-题解(python) 摘要:解题思路:注意事项:参考代码:l = list(map(int,input().split()))for i in l[::-1]: print(i,end=' ')…… 题解列表 2021年10月13日 0 点赞 0 评论 216 浏览 评分:0.0