[编程入门]数字逆序输出 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int i,a[10];for( i=0; i<10; i++){scanf("%d",&a[i]);}for(…… 题解列表 2019年05月15日 0 点赞 0 评论 337 浏览 评分:0.0
编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,a[10],temp; for(i=0;i<10;i++) scanf("%d",&a[i]);…… 题解列表 2022年11月23日 0 点赞 0 评论 50 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:开始以为要排序了然后逆序。。。。注意事项:参考代码:#include<stdio.h>int main(){ int n[10],i; for(i=0;i<10;i++) …… 题解列表 2018年03月04日 0 点赞 0 评论 511 浏览 评分:0.0
[编程入门]数字逆序输出-题解(C语言代码) 摘要:#include int main() { int i; int a[10]; for(i=0;i=0;i--) { if(i==9) …… 题解列表 2020年05月26日 0 点赞 0 评论 203 浏览 评分:2.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…… 题解列表 2021年11月04日 0 点赞 0 评论 91 浏览 评分:2.0
编写题解 1026: [编程入门]数字逆序输出 摘要:解题思路:怎么说呢,只要你学过数组你一定能解注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ int n1,n2,n[…… 题解列表 2022年03月21日 0 点赞 0 评论 156 浏览 评分:2.0
数组的正输入逆输出(数组的遍历) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i; for(i=0;i<10;i++) { scanf("…… 题解列表 2022年09月18日 0 点赞 0 评论 76 浏览 评分:2.0
[编程入门]数字逆序输出-题解(C++代码) 摘要:参考代码:#include <iostream>using namespace std;int main(){ int a[10],i; for(i=0;i<=9;i++) { …… 题解列表 2020年08月30日 0 点赞 0 评论 231 浏览 评分:3.7
[编程入门]数字逆序输出--朴素方法 摘要:解题思路:利用切片[start:end:step]反向,然后输出。当然你也可以使用reverse()函数。注意事项:最后结果是一排输出的参考代码:m=list(map(int,input().spli…… 题解列表 2022年09月13日 0 点赞 0 评论 164 浏览 评分:5.0
1026: [编程入门]数字逆序输出 摘要:解题思路:简单注意事项:无参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,f,g,h,i,j; scanf("%d %d %d %d %d …… 题解列表 2022年01月13日 0 点赞 1 评论 108 浏览 评分:6.0