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>
using namespace std;
int main()
{
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];
}
Comments
Leave a comment