C++

[C++]명품 C++ 프로그래밍 실습문제 10장 3번

Hs’s Coding vlog 2023. 1. 25. 21:33

[C++]명품 C++ 프로그래밍 실습문제 10장 3번

[C++]명품 C++ programming 실습문제 10장 3번

명품 C++ 프로그래밍실습문제/연습문제 /C++

#include <iostream>
#include <vector>
#include <string>
#include <ctime>
#include<cstdlib>
using namespace std;

template <class T>
void reverseArrays(T &arr1, int size);
int main() {
	int x[] = { 1,10,100,5,4 };
	reverseArrays(x, 5);
	for (int i = 0; i < 5; i++)
	{
		cout << x[i] << ' ';
	}


	return 0;
}
template <class T>
void reverseArrays(T &arr1, int size)
{
	int tmp;
	int k = size-1;
	for (int i = 0; i < size/2; i++)
	{
		tmp = arr1[i];
		arr1[i] = arr1[k];
		arr1[k] = tmp;
		k--;
	}

}