普普通通的解题方法(for循环)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a[10],t; for (i = 0;i < 10;i++) { scanf("%d",&a[……
旧物有情 # 不用库函数数字逆序输出
摘要:```
#include
using namespace std;
int main(){
int a[10];
for(int i=9; i>=0; i……
最简单的傻瓜题解,瓜保熟,看一眼不会我倒立洗头
摘要:解题思路:最呆瓜简单直接的一种方法,就是一个一个去定义每一个字符串,然后赋值上去,再按照原顺序的倒序排列给输出出来。看着最终答案效果写过程也是没谁了哈哈哈O.o此想法由糯智本人脑抽提出,由强力室友完善……
编写题解 1026: [编程入门]数字逆序输出
摘要:解题思路:1、定义数组类型及长度;2、利用for循环进行输入输出。注意事项:1、注意数组下标从0开始;输入输出时不要犯错。参考代码:#include<stdio.h>int main(){ i……
[编程入门]数字逆序输出
摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); int[] arr = new int[10]; for (int i = 0; i < a……
[编程入门]数字逆序输出
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
int main()
{
int a[10]={0},i=0;
for(i=0;i<10;i++)
scanf("……