TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Sort Numbers in Ascending Order using C#
Vijayaragavan S
Aug 09
2016
Code
99.2
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
using
System;
class
Program
{
static
void
Main()
{
int
i;
int
[] a =
new
int
[30];
// Array Declaration in C#
Console.Write(
"Enter the Number of values to be Sort : "
);
// read the string value (by default) and convert it in to integer
int
n = Convert.ToInt16(Console.ReadLine());
//Reading the values one by one
for
(i = 1; i <= n; i++)
{
Console.Write(
"Enter the No "
+ i +
":"
);
// read the string value (by default) and convert it in to integer
a[i] = Convert.ToInt16(Console.ReadLine());
}
//Sorting the values
for
(i = 1; i <= n; i++)
{
for
(
int
j = 1; j <= n - 1; j++)
{
if
(a[j] > a[j + 1])
{
int
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
//Display the Ascending values one by one
Console.Write(
"Ascending Sort : "
);
for
(i = 1; i <= n; i++)
{
Console.Write(a[i]+
" "
);
}
//Waiting for output
Console.ReadKey();
}
}
Ascending
Arrays
C#
for Loop