编写题解 1026: [编程入门]数字逆序输出--string库gets函数 摘要:解题思路:注意事项:原来的字符串最后一个是空格记得从倒数第二位开始输出的。参考代码:#include<stdio.h>#include<iostream>using namespace std;int…… 题解列表 2022年03月02日 0 点赞 0 评论 355 浏览 评分:0.0
编写题解 1026: [编程入门]数字逆序输出--解题 摘要:解题思路:数组逆序输出注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ int str[…… 题解列表 2022年03月02日 0 点赞 0 评论 316 浏览 评分:0.0
最简单的数字逆序输出 摘要:解题思路:正循环输入,反循环输出注意事项:参考代码:#include<stdio.h> int main() { int arr[10]; int i; for(i=0;i<10;i+…… 题解列表 2022年02月25日 0 点赞 0 评论 375 浏览 评分:9.9
编写题解 1026: [编程入门]数字逆序输出 自留笔记 摘要:解题思路:顺序输入,逆序输出参考代码:#include <stdio.h> int main() { int a[10]; for(int i=0;i<10;i++) …… 题解列表 2022年02月22日 0 点赞 0 评论 233 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))for i in li[::-1]: print(i,end=' ')…… 题解列表 2022年02月20日 0 点赞 0 评论 298 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:逆序 easy注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i; for(i=0;i<10;i++) …… 题解列表 2022年02月13日 0 点赞 0 评论 269 浏览 评分:0.0
画蛇添足-采用函数输出 摘要:解题思路:注意事项:手生了,上来犯了大错。。。注意!gets() 是有缓冲区的,每次按下回车键,就代表当前输入结束了,gets() 开始从缓冲区中读取内容,这一点和 scanf() 是一样的。gets…… 题解列表 2022年02月05日 0 点赞 0 评论 502 浏览 评分:8.0
【露离】编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:两行搞定注意事项:参考代码:a=[i for i in input().split()]print(' '.join(a[::-1]))…… 题解列表 2022年02月04日 0 点赞 0 评论 295 浏览 评分:0.0
reverse()函数逆序 摘要:解题思路:运用<algorithm>里面的头文件reverse来逆序注意:reverse( 首地址,尾地址 + 1 )先举个小例子吧!下面是本题代码!!给个评论吧!…… 题解列表 2022年01月27日 0 点赞 0 评论 560 浏览 评分:0.0
[编程入门]数字逆序输出-题解(python代码) 摘要:解题思路: 将输入的数放入列表中,然后用reverse函数将列表中的数进行倒序。注意事项:参考代码:lst = list(map(int, input().split()))lst.revers…… 题解列表 2022年01月25日 0 点赞 0 评论 342 浏览 评分:0.0