Qu. Write a program to sort one dimensional array in ascending order using non static method.
Answer
Output
- using System;
- namespace Sort_Array
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- int[] num= {22,50,11, 2, 49};
- Program p=new Program();
- p.SortArray(num);
- }
- public void SortArray(int[] numarray)
- {
- int swap = 0;
- for(int i=0; i<numarray.Length; i++)
- {
- for(int j=i+1; j<numarray.Length; j++)
- {
- if(numarray[i]>=numarray[j])
- {
- swap=numarray[j];
- numarray[j]=numarray[i];
- numarray[i]=swap;
- }
- }
- Console.Write(numarray[i] + " ");
- }
- }
- }
- }
2 11 22 49 50
_