C++

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

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

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

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

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

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

template <class T>
bool equalArrays(T arr1[], T arr2[], int size);
int main() {
	int x[] ={1,10,100,5,4};
	int y[] = { 1,10,100,5,4 };
	if (equalArrays(x, y, 5)) cout << "같다.";
	else cout << "다르다";

	return 0;
}
template <class T>
bool equalArrays(T arr1[], T arr2[], int size)
{
	for (int i = 0 ; i < size; i++)
	{
		if (arr1[i] != arr2[i])
		{
			return false;
		}
	}
	return true;

}