input 1) an integer N,which denotes the number of students present
Input 2) an array of size N denoting the problem solving capacity of Students
1
Expert's answer
2021-09-22T23:43:22-0400
# include<iostream>usingnamespace std;
intmain(){
int N;
int arr[6];
cout<<"Enter the number of students present: ";
cin>>N;
cout<<"Enter 5 Array Elements: ";
for(int i=0; i<5; i++)
cin>>arr[i];
}
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments