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

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

筛选

折半法逆序输出

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

c数字逆序输出

摘要:解题思路:两个数组注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int i,j; for(i=0;i<10;i++) { scanf("%d",&……

字符串解题,代码简短简单

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string str;    getline(cin,……