f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output
should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1
occurs 4 times, 2 occurs 2 times like so.
Answer Posted / kirubasankar
#include<iostream.h>
#include<conio.h>
void main()
{
int i,j;
int a[20],t;
clrscr();
for(i=0;i<5;i++)
{
cin>>a[i];
}
for(i=0;i<5;i++)
{
for(j=i+1;j<=5;j++)
{
if(a[i]>a[j])
{
t=a[i];
a[i]=a[j];
a[j]=t;
}
}
cout<<a[i];
}
getch();
}
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is entity framework c#?
Can datetime be null c#?
What is lazy in c#?
How to add a readonly property in c#.net
Will the following code compile?
What the different phase/steps of acquiring a proxy object in webservice?
Explain the difference between and xml documentation tag?
Does google use c#?
What is toint32 c#?
What is ienumerable t in c#?
Is for loop faster than foreach?
What do constructors do in c#?
What is the difference between delegates and events in c#?
What are the string functions in c#?
Where do I put dll files?