Showing posts with label Find Index of Number in Array. Show all posts
Showing posts with label Find Index of Number in Array. Show all posts

Saturday, 2 August 2014

Write a Program in C++ which give the Index number of a Number in Array

Structure of the Problem Requirements 

Array is a Data Structure which hold the record on different index. In this problem we learn how to know the index number of an array. The user will enter five digits and then after this enter a digit from these digits . As the reply the program will give output which is the index number of that specific number.

Source Code

#include<iostream>
using namespace std;
int main ()
{
int num [5];
int index=0;
for(int i=0;i<5;i++)
{
cout<< " Enter Your Number :";
cin>>num[i];
}
cout<<" Enter the Number to get it index number : ";
cin>>index;
for (int i =0;i<5;i++)
{
if(num[i]==index)
{
cout<<" \n \n Your Number Exist in Array Index :"<<i;
}
}
}

Output of the Program


C++ Array Programming
Index Number