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

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

筛选

适合新手理解的c++

摘要:#include<iostream>using  namespace std;int main(){ int i,j,arr[10]; int start=0; int end=sizeof(arr)……

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

摘要:解题思路:1、定义数组类型及长度;2、利用for循环进行输入输出。注意事项:1、注意数组下标从0开始;输入输出时不要犯错。参考代码:#include<stdio.h>int main(){     i……

直接输入然后输出

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