C语言 指针解决问题
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ; int a[110]={0} ; int *p=a ; ……
2836: 数组逆序重放
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],b[100],n,i; scanf("%d",&n); for( i=0……
2836: 数组逆序重放
摘要:解题思路:注意事项:参考代码:n = int(input())l = list(input().split())l = l[::-1]print(" ".join(l))……
优质题解,回归真神的初始途径
摘要:解题思路:注意事项:参考代码:n=int(input())l=list(map(int,input().split()))l.reverse()print(" ".join(map(str,l)))……
2836: 数组逆序重放
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; int temp; ……
2836: 数组逆序重放
摘要:解题思路:注意事项:参考代码:n=int(input())s=list(map(int,input().split()))sq=s[::-1]print(*sq)……
2836: 数组逆序重放
摘要:解题思路:其实很简单。只需要输入数组后,将数组逆序输出就可以了。注意事项:逆序输出是“i--”,别写成“i--”了,否则会陷入死循环。参考代码:#include<bits/stdc++.h>using……