answersLogoWhite

0

Range is to subtract the largest number from the least number so even if you had an even amount of numbers you would have to do pretty mich the same thing.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How many even numbers are there between 900 and 950?

There are 25 even numbers between 900 and 950. To find the number of even numbers within a range, you can use the formula (last number - first number)/2 + 1. In this case, (950 - 900)/2 + 1 = 25. This formula works because every other number within a range is even.


How do you print numbers as even numbers in a loop in qbasic?

To print even numbers in a loop in QBasic, you can use a FOR loop to iterate through a range of numbers and check if each number is even. An even number can be identified using the modulus operator (MOD). Here's a simple example: FOR i = 1 TO 20 IF i MOD 2 = 0 THEN PRINT i END IF NEXT i This code will print all even numbers from 1 to 20.


Which do you use an open circle or closed cirle for graphing inequalities?

A closed circle is when a range of numbers also includes that number and an open circle is when a range of numbers doesn't include that number, :)


Can you add an even and an odd number where the sum of the numbers will be even?

No. No matter what you use, the sum of an odd number and an even number will always be odd.


How do you print even number in qbasic?

In QBasic, you can print even numbers using a simple loop. For example, you can use a FOR loop to iterate through a range of numbers and then check if each number is even by using the modulus operator (MOD). Here's a sample code snippet: FOR i = 1 TO 20 IF i MOD 2 = 0 THEN PRINT i NEXT i This code will print all even numbers from 1 to 20.


What number is between 0.5 and.25?

There is a whole infinite range of numbers between .25 and .5 To denote all these numbers, we use the inclusive brackets: (.25, .5). But if you want a random number, .49 is in that range.


How many even numbers are there between 12 and 40?

There are 14 even numbers between 12 and 40. To calculate this, you can use the formula for finding the number of integers in a range: (largest number - smallest number) / 2 + 1. In this case, (40 - 12) / 2 + 1 = 28 / 2 + 1 = 14. So, there are 14 even numbers between 12 and 40.


When does an even number of odd numbers equal an odd number?

Never. When you dont add the same odd number and even number of times. For example: 5 + 3 (2 odd numbers; and even amount of odd numbers ) = 8 5 + 3 + 7 = 15 an odd amount of odd numbers 5 + 3 + 7 + 9 = 24 another even amount of odd numbers. But never if you use the only same number


How do you generate even numbers using do while statement?

1) to make a number even, multiply it by an even number. So you could use a randum number and double it.2) to test if a number if even, if ( i modulus 2 == 0 ) then it is even.


How do you use even and odd numbers for loop and if condition with variable please no use int?

how to use even and odd number with for loop and if condition plz dont use "int"..


How do you use range in math?

To find the Range in Math you u take the largest number and subtract the smallest number from it. You will then end up with the range of that set of numbers. Example: 2.4.6.5.6.3.3.2.5.9.2 Find the Range Biggest number:9 Smallest number:2 Subtract and you wil end up with the answer Range= 7


How can print prime numbers in between 1-100 but not adjust 40-50 in php language?

Use a counted loop in the closed range [1:100]. If the count is in the closed range [40:50], print the number. For all other numbers outwith this range, only print the number if it is prime.