In above c program, we ask the user to input 2 integer value and store it in variables start and end. If value of start is greater than the value of end, then we swap the values.
For loop counter is initialized to start, and for loop executes until value of count is less than or equal to end. For each iteration of the for loop, count value increments by 1.
Inside for loop, for every value of count, we check if its not perfectly divisible by 2. If true, it’s a Odd number and we output that number to the console window.
Source Code: C Program To Find Odd Numbers Between Range using For Loop
Write a C program to find the range of a set of numbers entered through the keyboard. Range is the difference between the smallest and biggest number in the list.
Example: If biggest number in the list is 5 and smallest number in the list is 1. The difference between them is the range. i.e., 5 – 1 = 4. So range = 4.
User Input: Enter the limit 5 Enter 5 numbers 1 2 3 4 5
Output: Small Number = 1 Big Number = 5 Range is 4
Logic To Find Range of Set of Numbers
First we ask the user to enter the length or the size of the list, and store it inside the variable limit. If the user enters the list size as 5, then we ask the user to enter 5 numbers.
Next we ask the user to enter the first number. We assign the first number entered by the user to variables small and big. Since user already entered 1 number into the list, we decrement the value of variable limit by 1.
Next we take remaining inputs inside the while loop. For each iteration of the while loop we decrement the value of variable limit by 1, until the value of limit is 0. Once value of limit is zero, control exits while loop.
For each input(inside the while loop), we check if the value entered is bigger than the value present in variable big. If its true, we assign the bigger number to variable big. We also check if the value entered is smaller than the value present in variable small. If its true, we assign the smaller number to variable small.
Once the control exits the while loop, variable big will have the biggest number in the list and variable small will have the smallest number in the list.
Finally, we use below formula to calculate range of the list: range = big – small;
Video Tutorial: C Program To Find Range of Set of Numbers
In above c program, we ask the user to input 2 integer value and store it in variables count and limit. While loop keeps executing until the start value i.e., count is less than or equal to the end value i.e., limit.
Inside while loop, for every value of count, we check if its not perfectly divisible by 2. If true, it’s a Odd number and we output that number to the console window. On every iteration of the loop we increment the value of count by 1.
printf("Enter start value and end value to generate Even no's\n");
scanf("%d%d", &count, &limit);
printf("\nEven numbers between %d and %d are:\n", count, limit);
while(count <= limit)
{
if(count % 2 == 0)
{
printf("%d\n", count);
}
count++;
}
return 0;
}
#include<stdio.h>
int main()
{
int count, limit;
printf("Enter start value and end value to generate Even no's\n");
scanf("%d%d", &count, &limit);
printf("\nEven numbers between %d and %d are:\n", count, limit);
while(count <= limit)
{
if(count % 2 == 0)
{
printf("%d\n", count);
}
count++;
}
return 0;
}
Output 1 Enter start value and end value to generate Even no’s 10 30
Even numbers between 10 and 30 are: 10 12 14 16 18 20 22 24 26 28 30
Output 2 Enter start value and end value to generate Even no’s 1 10
Even numbers between 1 and 10 are: 2 4 6 8 10
C Program to Generate Even Numbers Between Two Integers
In above c program, we ask the user to input 2 integer value and store it in variables count and limit. While loop keeps executing until the start value i.e., count is less than or equal to the end value i.e., limit.
Inside while loop, for every value of count, we check if its perfectly divisible by 2. If true, it’s a Even number and we output that number to the console window. On every iteration of the loop we increment the value of count by 1.
If there are any documents to iterate inside cursor object, then hasNext() will return true orelse it’ll return false. If hasNext() returns true, then we can iterate through the documents using next() method on the cursor object.
We could modify the cursor object using methods like sort(), limit() and skip(). In above example, we are modifying cursor object using sort() method, and we are sorting it in reverse lexicographical order on the name field.
Here we chain the methods sort(), limit() and skip(). We are sorting in reverse lexicographical order on the name field, then skipping the first 2 documents and then limiting the result/output to 5 documents.
The order in which these 3 methods are applied are: First sort, then skip and then limit. Also note that, these methods modify cursor object at the server side and not on client site.