编写题解 1026: [编程入门]数字逆序输出(函数) 摘要:```c //数字逆序输出 #include //定义逆序函数,void表示无返回类型,Reverse()括号为空表示无实际参数 void Reverse(){ int c[9];//…… 题解列表 2022年08月02日 0 点赞 2 评论 177 浏览 评分:9.9
编写题解 1026: [编程入门]数字逆序输出(python 就两行代码) 摘要:解题思路:两行代码,简单粗暴,哈哈哈哈。注意事项:参考代码:a=input()print(str(a)[::-1]) …… 题解列表 2021年07月07日 0 点赞 0 评论 485 浏览 评分:9.9
[编程入门]数字逆序输出【C++数组】 摘要:解题思路:搞个数组然后反过来输出就完事儿注意事项:参考代码:#include <iostream> using namespace std; int main() { int s[…… 题解列表 2021年09月27日 0 点赞 0 评论 225 浏览 评分:9.9
<指针练习>数字逆序输出(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int* p = &a[9];//定义指针p指向最后一个元素; for (int i = …… 题解列表 2023年01月02日 0 点赞 0 评论 187 浏览 评分:9.9
数字逆序输出 摘要:解题思路:先输入,再输出注意事项:参考代码:#include<stdio.h>int main(){ int a[10],j,i; for(i=0;i<=9;i++) { scanf("%d",&a…… 题解列表 2022年03月24日 0 点赞 1 评论 143 浏览 评分:9.9
STL函数翻转 摘要:解题思路:C++STL库函数翻转注意事项:参考代码:```#include<bits/stdc++.h>using namespace std;int main(){ vector<int> a…… 题解列表 2021年08月21日 0 点赞 0 评论 259 浏览 评分:9.9
是个人就能懂,不服来辩 摘要:解题思路:注意事项:参考代码:#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 评论 139 浏览 评分:9.9
数字逆序输出的写法 摘要:解题思路: 一次输入10个数字,则定义一个数组元素为10的数组;后利用从右往左递降输出即可注意事项:数组长度为10,所以数组下标从0开始参考代码:#include<stdio.h>int m…… 题解列表 2021年12月02日 0 点赞 0 评论 420 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题7.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>int main(){ int i[11]; for(int a = 0;a < 10;a ++) scanf("%d",&i…… 题解列表 2017年07月26日 0 点赞 0 评论 910 浏览 评分:9.9
1026: [编程入门]数字逆序输出c++版(大神别来;“菜鸟”必看) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[101]; for(int i=1;i<=10;i++) …… 题解列表 2022年06月19日 0 点赞 0 评论 397 浏览 评分:9.9