非常简单(看不懂打我) 摘要:解题思路:输入后将循环倒着之后输出就好了注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[15]; for(…… 题解列表 2023年05月18日 0 点赞 0 评论 88 浏览 评分:0.0
数字逆序输出 摘要:解题思路:1.利用数组来储存十个数字;2.需要用到for循环来完成逆序输出;注意事项:需要理解数组用法参考代码:#include<stdio.h>int main(){ int a[10],i; fo…… 题解列表 2021年11月10日 0 点赞 0 评论 159 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)(简单) 摘要:解题思路:注意事项:参考代码:/*输入10个数字,然后逆序输出。*/#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<10;i++…… 题解列表 2018年02月17日 0 点赞 0 评论 626 浏览 评分:0.0
数字逆序输出 摘要:解题思路:对输入的一组数字逆序输出,可用循环的方式,输入的时候从a[0]到a[9],输出从a[9]到a[0]输出注意事项:循环参考代码:#include<stdio.h>int main(){ int…… 题解列表 2022年04月07日 0 点赞 0 评论 143 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:声明两个函数分别求最大公因数和最小公倍数,然后在主函数中调用输出结果即可注意事项:参考代码:#include<stdio.h>int gys(int m, int n);//声明函数gys以…… 题解列表 2018年12月05日 0 点赞 0 评论 654 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(void) { int a[10], i; for (i = 0; i < 10; i++…… 题解列表 2018年04月25日 0 点赞 0 评论 544 浏览 评分:0.0
C++速度求解,够取巧 摘要:解题思路:暴力!按题目求解注意事项: 注意有局限性,万一人家输入的数组是乱序排放呢参考代码:#include <bits/stdc++.h>using namespace std;#define N …… 题解列表 2024年03月21日 0 点赞 0 评论 121 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:方法一:运用数组的逆向输出#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){ int…… 题解列表 2018年01月03日 0 点赞 0 评论 766 浏览 评分:0.0
编写题解 1026: [编程入门]数字逆序输出--解题 摘要:解题思路:数组逆序输出注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ int str[…… 题解列表 2022年03月02日 0 点赞 0 评论 133 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(int argc, const char * argv[]) { int a[10]; …… 题解列表 2017年08月14日 0 点赞 0 评论 678 浏览 评分:0.0