算法提高逆序排列

2022-06-28 19:02:47 浏览数 (1)

本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。

代码语言:javascript复制
#include<iostream>
using namespace std;
int main(){
	int arr[10000];
	int temp,i=0;
	cin>>temp;
	while(temp!=0){
		arr[i]=temp;
		i  ;
		cin>>temp;
	}
	for(int j=i-1;j>=0;j--){
		cout<<arr[j]<<" ";
	}	
}

Post Views: 242

0 人点赞