c++ 将输入存储到数组,然后反转数组,最后输出

2021-06-17 07:06

阅读:445

标签:reverse   --   结果   ble   enter   div   fir   str   c++   

// 输入一个包含多个double元素的数组,先打印结果,然后反转出头和尾元素之外的所有元素,最后再打印结果
#include 
using namespace std;
int fill_array(double arr[], int size);
void show_array(double arr[], int size);
void reverse_array(double arr[], int size);

int main() {
	int size;
	int inputCount;
	cout > size;
	double * arr = new double[size];
	inputCount = fill_array(arr, size);
	cout > arr[i]; i++) {
		count++;
	}
	return count;
}

void show_array(double arr[], int size) {
	for (int i = 0; i 

  

c++ 将输入存储到数组,然后反转数组,最后输出

标签:reverse   --   结果   ble   enter   div   fir   str   c++   

原文地址:https://www.cnblogs.com/ranwuer/p/9721366.html


评论


亲,登录后才可以留言!