题解 1026: [编程入门]数字逆序输出

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Java 代码解题代码参考

摘要:解题思路:用数组读入,逆序输出即可注意事项:注意加上空格符输出参考代码:import java.util.Scanner;public class Main {       public static……

[编程入门]数字逆序输出

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[15];int main(){    for(int i=0……

[编程入门]数字逆序输出

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[15];int main(){  for(int i=1;i……

题解 1026: [编程入门]数字逆序输出(C语言-傻瓜解法)

摘要:解题思路:如果你疑惑为什么我不用数组,明明数组加循环就能轻松解决的事情,为什么要这样一个一个手敲。我也知道啊,问题是现在还没学到数组,我就想根据进度进行匹配训练,更重要的是我确实是不会用数组,尴尬尬尬……

reverse函数解

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<algorithm>using namespace std;int main(){ ……