1026: [编程入门]数字逆序输出 摘要:解题思路:创建一个10个长度的整型数组,在控制台输入10个数,再用for循环将数组的最后一位当首位依次输出注意事项:控制台输入的数不要超出数组长度参考代码:Scanner in = new Scann…… 题解列表 2021年12月19日 0 点赞 0 评论 186 浏览 评分:0.0
C++代码for循环实现数字逆序输出 摘要:解题思路:for循环逆序输出数字for(int i =9;i>=0;i--)注意事项:暂时不明参考代码:#include<iostream>using namespace std;int main()…… 题解列表 2021年12月27日 0 点赞 0 评论 853 浏览 评分:8.7
1026: [编程入门]数字逆序输出 摘要:解题思路:简单注意事项:无参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d %d %d %d %d …… 题解列表 2022年01月13日 0 点赞 1 评论 108 浏览 评分:6.0
[编程入门]数字逆序输出-题解(python代码) 摘要:解题思路: 将输入的数放入列表中,然后用reverse函数将列表中的数进行倒序。注意事项:参考代码:lst = list(map(int, input().split()))lst.revers…… 题解列表 2022年01月25日 0 点赞 0 评论 156 浏览 评分:0.0
reverse()函数逆序 摘要:解题思路:运用<algorithm>里面的头文件reverse来逆序注意:reverse( 首地址,尾地址 + 1 )先举个小例子吧!下面是本题代码!!给个评论吧!…… 题解列表 2022年01月27日 0 点赞 0 评论 316 浏览 评分:0.0
【露离】编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:两行搞定注意事项:参考代码:a=[i for i in input().split()]print(' '.join(a[::-1]))…… 题解列表 2022年02月04日 0 点赞 0 评论 113 浏览 评分:0.0
画蛇添足-采用函数输出 摘要:解题思路:注意事项:手生了,上来犯了大错。。。注意!gets() 是有缓冲区的,每次按下回车键,就代表当前输入结束了,gets() 开始从缓冲区中读取内容,这一点和 scanf() 是一样的。gets…… 题解列表 2022年02月05日 0 点赞 0 评论 348 浏览 评分:8.0
1026: [编程入门]数字逆序输出 摘要:解题思路:逆序 easy注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i; for(i=0;i<10;i++) …… 题解列表 2022年02月13日 0 点赞 0 评论 84 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))for i in li[::-1]: print(i,end=' ')…… 题解列表 2022年02月20日 0 点赞 0 评论 119 浏览 评分:0.0
编写题解 1026: [编程入门]数字逆序输出 自留笔记 摘要:解题思路:顺序输入,逆序输出参考代码:#include <stdio.h> int main() { int a[10]; for(int i=0;i<10;i++) …… 题解列表 2022年02月22日 0 点赞 0 评论 75 浏览 评分:0.0