hello guys,
i want to write a program to cout the numbers i input (a-z) to (z-a)
like
input (1,2,3,4,5,6,7,8,9,10)
output(10,9,8,7,6,5,4,3,2,1)
and i tried this but it's out put the same sorting
#include <iostream.h>
void main(void)
{
int Number[11],i,j;
cout<<"Enter The Numbers"<<endl;
for (i = 1; i<=10; i++)
{
cout<<"Number"<<i<<": ";
cin>>Number[i];
}
for (j=1;j<=10;j++)
{
cout<<Number[j]<<endl;
}
}