【编程入门】数字逆序输出 摘要:参考代码:#include<stdio.h>int main(){ int a[10],i,j; for(i=0;i<10;i++) scanf("%d",&a[i…… 题解列表 2024年06月05日 0 点赞 0 评论 120 浏览 评分:9.9
C++速度求解,够取巧 摘要:解题思路:暴力!按题目求解注意事项: 注意有局限性,万一人家输入的数组是乱序排放呢参考代码:#include <bits/stdc++.h>using namespace std;#define N …… 题解列表 2024年03月21日 0 点赞 0 评论 111 浏览 评分:0.0
数字逆序输出(java) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] ar…… 题解列表 2024年03月01日 0 点赞 0 评论 220 浏览 评分:9.9
编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<10;i++){ scanf("%d",&a[i]); } fo…… 题解列表 2024年02月07日 0 点赞 0 评论 70 浏览 评分:0.0
数字逆序输出 摘要:解题思路:1.具体问题具体分析,本题要求输入十个数,定义数组长度为10就行了。2.注意数组下标是从零开始的,最后一个下标为9;数组下标0123456789插入前1234567890插入后0987543…… 题解列表 2024年01月25日 0 点赞 0 评论 77 浏览 评分:9.9
简单方法实现数字逆序输出 摘要:解题思路:创建数组存储数据,利用两个for循环即可实现第一个for循环:用于拿到用户输入的10个数字,存入数组第二个for循环:倒着输出创建的数组注意事项:参考代码:#include<iostream…… 题解列表 2024年01月18日 0 点赞 0 评论 86 浏览 评分:0.0
指针遍历解决 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;//输入10个数字,然后逆序输出。int main(){ int arr[10] = {…… 题解列表 2023年12月26日 0 点赞 0 评论 47 浏览 评分:0.0
c语言解法;用交换法来写 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a[10], i, b, j; for (i = 0; i < 9; i++) …… 题解列表 2023年12月21日 0 点赞 0 评论 58 浏览 评分:0.0
是个人就能懂,不服来辩 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d%d%d%d%d%d%d%d%d%d",&a…… 题解列表 2023年12月10日 0 点赞 0 评论 130 浏览 评分:9.9
C语言课后习题 摘要:解题思路:用m,n相互替换一下,当然你也可以只用一个n从0到9再从9到0注意事项:参考代码:#include<stdio.h>int main(){ int n,m; int arr[10…… 题解列表 2023年12月08日 0 点赞 1 评论 58 浏览 评分:9.9