编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:lst = list(map(int,input().split())) lst.reverse() for i in lst: print(i,end=&…… 题解列表 2021年04月06日 0 点赞 0 评论 471 浏览 评分:0.0
[编程入门]数字逆序输出-题解(C语言) 摘要:```c #include int main() { int a[10]; int n=10; while(n--) { scanf("%d",&a[n]); } …… 题解列表 2021年08月25日 0 点赞 0 评论 431 浏览 评分:0.0
1026: [编程入门]数字逆序输出-题解(python) 摘要:解题思路:注意事项:参考代码:l = list(map(int,input().split()))for i in l[::-1]: print(i,end=' ')…… 题解列表 2021年10月13日 0 点赞 0 评论 609 浏览 评分:0.0
适合新手理解的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 评论 558 浏览 评分: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 评论 489 浏览 评分:0.0
数字逆序输出 摘要:解题思路:1.利用数组来储存十个数字;2.需要用到for循环来完成逆序输出;注意事项:需要理解数组用法参考代码:#include<stdio.h>int main(){ int a[10],i; fo…… 题解列表 2021年11月10日 0 点赞 0 评论 333 浏览 评分: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 评论 437 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2021年11月17日 0 点赞 0 评论 777 浏览 评分:0.0
字符串解题,代码简短简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str; getline(cin,…… 题解列表 2021年12月16日 0 点赞 0 评论 656 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:创建一个10个长度的整型数组,在控制台输入10个数,再用for循环将数组的最后一位当首位依次输出注意事项:控制台输入的数不要超出数组长度参考代码:Scanner in = new Scann…… 题解列表 2021年12月19日 0 点赞 0 评论 393 浏览 评分:0.0