#include<iostream.h>
#include<conio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c,big1,big2,big3;
cout<<“Enter three numbers:”;
cin>>a>>b>>c;
big1=a;
if(b>big1)
big1=b;
else
if(c>big1)
big1=c;
if(big1==a)
{
if(b>c)
{
big2=b;
big3=c;
}
else
{
big2=c;
big3=b;
}
}
else
{
if(big1==b)
if(a>c)
{
big2=a;
big3=c;
}
else
{
big2=c;
big3=a;
}
else
{
if(a>b)
{
big2=a;
big3=b;
}
else
{
big2=b;
big3=a;
}
}
}
cout<<“nntNumbers in descending order……ntt”;
cout<<big1<<” “<<big2<<” “<<big3;
getch();
}
how to join ur site??? as a blogger???
if you want to write programs on my blog than give me your gmail address with which you login to your blogger account…………….i will add you as a writer of my blog……………..
yes I want to write
I wrote cin >> a >> b >> c; instead of cin>>a>>b>>c; Does this affect the output? Because after removing the spaces, my program worked.
no it doesn't affect.
What does nnt mean
How to find
It’s a program which just copied from Sumita Arora C++ Book Class 11.
Go for some new and Advanced Logic for doing this Program