How to make this Perl program print in descending order?

mm24mm

This code works but it prints in ascending order. Do I need to change my whole formula?

print "Enter an integer \n";
my $root = <STDIN>; 
my @nums = (100..200);    
my $i = 0;           

# code in while loop executes as long as condition is true 
while ( $i < $#nums ) 
{
    print "$nums[$i]\n",if($nums[$i] % $root == 0); $i++;
}
ssr1012
print "Enter an integer \n";
my $root = <STDIN>; 
my @nums = (100..200);

@nums = reverse @nums; #Just reverse the arrays

my $i = 0;           

# code in while loop executes as long as condition is true 
while ( $i < $#nums ) 
{
    print "$nums[$i]\n",if($nums[$i] % $root == 0); $i++;
}

May be it will helps you.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to sort by column in descending order in Spark SQL?

From Dev

Sort a Single Column in Ascending or Descending Order using Perl

From Dev

How to obtain the descending order (ordinality) of an integer array?

From Dev

How to make a program stop and print inputs from lowest to greatest?

From Dev

How to sort the string number in descending order?

From Dev

Java: How do I print out in descending order the values of a list of objects' properties?

From Dev

In Perl, how do I print hash keys in order of their (numerical) values?

From Dev

How to print the result in descending order in java?

From Dev

Print (in descending order) the number occurrence in a 2D array

From Dev

How to order by case, descending?

From Dev

how to order ascending descending?

From Dev

print map values in descending order in c++

From Dev

How can i print in descending order?

From Dev

How to sort in descending order with numpy?

From Dev

how to make threads print in order java

From Dev

Java: How do I print out in descending order the values of a list of objects' properties?

From Dev

How to make php to print xml for this program?

From Dev

How can I make my query set order by descending in django based on auto increment id field

From Dev

How do I sort and print the phrases along the rating given in descending order

From Dev

How to print even numbers in ascending order and odd numbers in descending order without using collection

From Dev

how to make a python program using "while" to print at 0?

From Dev

How can I make Perl print first ten lines of a string?

From Dev

How to sort the atoms in descending order and print it out

From Dev

How to print a descending/ascending number of spaces in Java?

From Dev

how to use awk command to find all 5 length files - and print in descending order

From Dev

Similar to battleships. How do i print descending order with a border like so?

From Dev

how to make this code do select & sort in descending order

From Dev

How can I make my Quick Sort Algorithm sort the arrays in both Ascending and Descending order?

From Dev

Perl Sort a hash by value in descending order and then key in ascending order

Related Related

  1. 1

    How to sort by column in descending order in Spark SQL?

  2. 2

    Sort a Single Column in Ascending or Descending Order using Perl

  3. 3

    How to obtain the descending order (ordinality) of an integer array?

  4. 4

    How to make a program stop and print inputs from lowest to greatest?

  5. 5

    How to sort the string number in descending order?

  6. 6

    Java: How do I print out in descending order the values of a list of objects' properties?

  7. 7

    In Perl, how do I print hash keys in order of their (numerical) values?

  8. 8

    How to print the result in descending order in java?

  9. 9

    Print (in descending order) the number occurrence in a 2D array

  10. 10

    How to order by case, descending?

  11. 11

    how to order ascending descending?

  12. 12

    print map values in descending order in c++

  13. 13

    How can i print in descending order?

  14. 14

    How to sort in descending order with numpy?

  15. 15

    how to make threads print in order java

  16. 16

    Java: How do I print out in descending order the values of a list of objects' properties?

  17. 17

    How to make php to print xml for this program?

  18. 18

    How can I make my query set order by descending in django based on auto increment id field

  19. 19

    How do I sort and print the phrases along the rating given in descending order

  20. 20

    How to print even numbers in ascending order and odd numbers in descending order without using collection

  21. 21

    how to make a python program using "while" to print at 0?

  22. 22

    How can I make Perl print first ten lines of a string?

  23. 23

    How to sort the atoms in descending order and print it out

  24. 24

    How to print a descending/ascending number of spaces in Java?

  25. 25

    how to use awk command to find all 5 length files - and print in descending order

  26. 26

    Similar to battleships. How do i print descending order with a border like so?

  27. 27

    how to make this code do select & sort in descending order

  28. 28

    How can I make my Quick Sort Algorithm sort the arrays in both Ascending and Descending order?

  29. 29

    Perl Sort a hash by value in descending order and then key in ascending order

HotTag

Archive