[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;
}
'C++' 카테고리의 다른 글
[C++]명품 C++ 프로그래밍 실습문제 10장 4번 (0) | 2023.01.25 |
---|---|
[C++]명품 C++ 프로그래밍 실습문제 10장 3번 (0) | 2023.01.25 |
[C++] 명품 C++ 프로그래밍 실습문제 10장 오픈챌린지/openchallenge (0) | 2023.01.25 |
[C++] 명품 C++ 프로그래밍 실습문제 9장 10번 (0) | 2023.01.14 |
[C++] 명품 C++ 프로그래밍 실습문제 9장 9번 (0) | 2023.01.14 |