Category Archives: C++

Sum & Count of Even Odd Separately in Array

Task: Sum & Count of Even Odd Separately in Array // Write a C++ program to input 10 numbers // in array then display sum and count of even // and odd numbers in Array, separately. // Author: www.EasyCodeBook.com (c) #include<iostream> using namespace std; int main() { int arr[10],i,esum,osum,ecount,ocount; for(i=0;i<10;i++) { cout<<“Enter Number “<<(i+1)<<” :”;… Read More »

Loading

Count and Sum of Even Numbers in Array C Plus Plus

Task: Count and Sum of Even Numbers in Array C++ Program The Source Code of Count and Sum of Even Numbers in Array // Write a C++ program to input 10 numbers // in array then display even numbers, their // sum and count in array // Author: www.EasyCodeBook.com (c) #include<iostream> using namespace std; int… Read More »

Loading

Reverse Number Sequence in Array C Plus Plus

Task: Reverse Number Sequence in Array C Plus Plus The Source Code of Reverse Number Sequence in Array C Plus Plus Program // Write a C++ program to input 10 numbers // in array then display actual array // and in reverse order from last to first //element. // Author: www.EasyCodeBook.com (c) #include<iostream> #include<conio.h> using… Read More »

Loading

Fibonacci Sequence Generator Using Array C++

Task: Fibonacci Sequence Generator Using Array – C++ Program The Source Code for Fibonacci Sequence Generator Using Array // Write a C++ program to input number of terms // of FIBONACCI Series required, then // display Fibonacci Terms using Array // Author: www.EasyCodeBook.com (c) #include<iostream> #include<conio.h> using namespace std; int main() { //write program to… Read More »

Loading

Basic Bubble Sort Code in C++

Task: Basic Bubble Sort Code in C++ // Write a C++ program to input 10 numbers in arra // and sort these numbers in ascending orde // using Bubble sort algorith // Author: www.EasyCodeBook.com (c #include<iostream> #include<conio.h> using namespace std; int main() { int arr[10],i,j, temp; for(i=0;i<10;i++) { cout<<"Enter Number "<<(i+1)<<":"; cin>>arr[i]; } cout<<"Array Values… Read More »

Loading