import java.util.Scanner;
publicclassJavaExample
{
publicstaticvoidmain(String[] args)
{
int count, temp;
//User inputs the array size
Scanner scan =newScanner(System.in);
System.out.print("Enter number of elements you want in the array: ");
count = scan.nextInt();
int num[] =newint[count];
System.out.println("Enter array elements:");
for (int i =0; i < count; i++)
{
num[i] = scan.nextInt();
}
scan.close();
for (int i =0; i < count; i++)
{
for (int j = i +1; j < count; j++) {
if (num[i] > num[j])
{
temp = num[i];
num[i] = num[j];
num[j] = temp;
}
}
}
System.out.print("Array Elements in Ascending Order: ");
for (int i =0; i < count -1; i++)
{
System.out.print(num[i] +", ");
}
System.out.print(num[count -1]);
}
}
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email