Write a C++ program to check a given array of integers of length 1 or more and return true if the first element and the last element are equal in the given array

  • برمجة سي بلس بلس
  • برمجة

Write a C++ program to check a given array of integers of length 1 or more and return true if the first element and the last element are equal in the given array

Sample Output:

0
1
0

الأجوبة

#include <iostream>
using namespace std;

bool test(int nums[], int arr_length)
          {
           return arr_length > 0 && nums[0] == nums[arr_length - 1];
          } 
          
int main() 
 {  
  int arr_length;	
  int nums1[] = {10, 20, 40, 50 };	
  arr_length = sizeof(nums1) / sizeof(nums1[0]);
  cout << test(nums1, arr_length) << endl; 
  int nums2[] = {10, 20, 40, 10};	
  arr_length = sizeof(nums2) / sizeof(nums2[0]);
  cout << test(nums2, arr_length) << endl;
  int nums4[] = {12, 24, 35, 55};	
  arr_length = sizeof(nums4) / sizeof(nums4[0]);
  cout << test(nums4, arr_length) << endl;

  return 0;    
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...