1026: [编程入门]数字逆序输出——Python
摘要:解题思路:利用python中的切片注意事项:参考代码:l = list(map(int,input().split()))for i in l[::-1]: print(i,end = '……
是个人都能看懂(仅限于《秒杀》本道题)#1026
摘要:解题思路: 由于某些同学实在是看不懂例如:#include<stdio.h>
int main()
{
int a[10],i,k;
for(i=0;i<10;i++) ……
编写题解 1026: [编程入门]数字逆序输出
摘要:解题思路:怎么说呢,只要你学过数组你一定能解注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ int n1,n2,n[……
编写题解 1026: [编程入门]数字逆序输出--string库gets函数
摘要:解题思路:注意事项:原来的字符串最后一个是空格记得从倒数第二位开始输出的。参考代码:#include<stdio.h>#include<iostream>using namespace std;int……
编写题解 1026: [编程入门]数字逆序输出--解题
摘要:解题思路:数组逆序输出注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ int str[……
最简单的数字逆序输出
摘要:解题思路:正循环输入,反循环输出注意事项:参考代码:#include<stdio.h>
int main()
{
int arr[10];
int i;
for(i=0;i<10;i+……
编写题解 1026: [编程入门]数字逆序输出 自留笔记
摘要:解题思路:顺序输入,逆序输出参考代码:#include <stdio.h>
int main()
{
int a[10];
for(int i=0;i<10;i++)
……