#include<stdio.h> #include <iostream> using namespace std; int main(){ int number; int min=10,max=50; cout << "Enter the minimum range: "; cin >> min; cout << "Enter the maximum range: "; cin >> max; cout << "even numbers in given range are: "; for(number = min;number <= max; number++) if(number % 2 ==0) cout << number << " "; return (0); }
Code Example |
---|
Cpp :: string array 2d c++ |
Cpp :: c++ error 0xC0000005 |
Cpp :: c++ forloop |
Cpp :: c++ influenced |
Cpp :: linux x11 copy paste event |
Cpp :: qt graphics scene map cursor position |
C :: c colour text |
C :: powershell search files for string |
C :: how to store a user input with spaces in c |
C :: buble sort c |
C :: write in file in c |
C :: space after format specifiers in c |
C :: reading string with spaces in c |
C :: curl authorization header |
C :: %hd c |
C :: Prime Number Check Program in C |
C :: find the largest number among five numbers in c language |
C :: pass the pointer to the function |
C :: c integer to string |
C :: c argv |
C :: c check if char is an operator |
C :: read string with space c |
C :: merge sort for strings in c |
C :: initialize array c |
C :: C Arithmetic Operators |
C :: c check first character of string |
C :: delete string function in c |
C :: c exit |
C :: how to take comma separated integer input in c |
C :: best approach c menu terminal |