Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about how to write Program to enter 10 integers in a single- dimension array and then print out the array in ascending order .So let’s go to our topic
This program takes in the ten integers array[x] to be stored in the single-dimensional array
as a screen input from the user.
It then sorts out these ten integers into ascending order and prints them out using the ‘cout’
command.
#include <iostream.h> #include <conio.h> void main() { clrscr(); int array[10],t; for(int x=0;x<10;x++) { cout << “Enter Integer No. ” << x+1 << ” : ” << endl; cin>>array[x]; } for (x=0;x<10;x++) { for(int y=0;y<9;y++) { if(array[y]>array[y+1]) { t=array[y]; array[y]=array[y+1]; array[y+1]=t; } } } cout << “Array in ascending order is : “;for (x=0;x<10;x++) cout << endl << array[x]; getch(); }
INPUT :
43
67
53
21
6
78
92
48
95
8
OUTPUT :
Array in ascending order is :
6
8
21
43
48
53
67
7892
95
Related Post:-
So I hope that you learn about the this program And if you have any more queries about progrmming ,web Devlopment ,tech,computer relegated then feel free to discuss your problem in the comment section.Thank you so much and come back for more updates about Techgsr.co .