There are 84 such numbers.
There are 126 of them.
49
89
999 (whole) numbers. THere are the same number whether they are counted in ascending, descending or other order.
4digit number
49
999 (whole) numbers. THere are the same number whether they are counted in ascending, descending or other order.
Highlight the numbers and click on the sort button. You can sort ascending (smallest to largest) or descending (largest to smallest).
5295
9000
DOS
Ascending means climbing up, decending is travelling down. So in maths, ascending order means numbers that start at the lowest and get higher.
This is known as arranging the numbers in ascending order.
sorry
order ascending or descending and take the 6th number
the following program will display all numbers given in the array in ascending order #include<stdio.h> void main() { int i,h,p; int numbers[10]={5,8,3,2,6,7,9,4,1,10}; for(p=0;p<=8;p=p+1) { for(i=0;i<=8;i=i+1) { if(numbers[i]>numbers[i+1]) { a=numbers[i]; numbers[i]=numbers[i+1]; numbers[i+1]=a; } } } for(i=0;i<=9;i=i+1) { printf("%d ",numbers[i]); } }