Sunday, 1 February 2015

Program to read single digit element in an array and print horizontal histogram.

//Program to read single digit element in an array and print horizontal histogram.

#include<iostream.h>
#include<conio.h>
void main()
{
int a[10],n,i,j,max=0;
clrscr();
cout<<"Enter the no. of element in an array:\n";
cin>>n;
for(i=0;i<n;i++)
{
  cin>>a[i];
  if(a[i]>max)
  max=a[i];
}

for(i=0;i<n;i++)
  {
     for(j=0;j<max;j++)

{
if(j<a[i])
cout<<"* ";
else
cout<<" ";
}
cout<<"\n";

   }
getch();
}

No comments:

Post a Comment

Read contacts in iOS using Swift with error handling

Just copy and paste the below code Pre-step before pasting the below code Add below line in AppDelegate.swift file below import statement ...