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

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

筛选

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

摘要:解题思路:注意事项:参考代码:#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(){ ……

折半法逆序输出

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,len=10,t;    int arr[10];    for(i=0;i<10;i++){……

1026-数字逆序输出

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