Showing posts with label To solve Odd Number Logic. Show all posts
Showing posts with label To solve Odd Number Logic. Show all posts

Program to find Odd numbers in the given range using C++

#include<iostream.h>
#include<conio.h>
void main()
{
            int rem, Start_Num, End_Num;
            clrscr();
            cout <<" Please Enter the Start and End numbers:\n";

            cin >> Start_Num >> End_Num;
            cout <<" The odd numbers in the ranges are \n";

            while  (Start_Num <= End_Num){
                        rem = Start_Num % 2;
                        if (rem != 0)
                                    cout<<"\t" <<Start_Num;

                        Start_Num++;
            }
}

How to Answer "Do You Use AI?" in an Interview (Without Lying or Bragging) – 2026 Guide

How to Answer "Do You Use AI?" in an Interview (Without Lying or Bragging) – 2026 Guide Learn how to answer "Do you use AI?...