Category Archives: C++

C++ Circle Area or Circumference Program

Task: Write a C++ Program To Calculate Circle Area or Circumference according to the User choice. The Source Code of C++ Circle Program // Write a program that uses two user defined functions // for calculating area and circumference of a circle. //The program will input radius and asks the user // to enter a… Read More: C++ Circle Area or Circumference Program »

Loading

Sum and Average of Float Array in C Plus Plus

Task: Sum and Average of Float Array in C Plus Plus The Source Code of C++ Program Sum and Average of Float Array // Write a C++ Program using Arrays // to input n numbers in array // then Calculate and Print sum & average // of all numbers in array #include<iostream> #include<conio.h> using namespace… Read More: Sum and Average of Float Array in C Plus Plus »

Loading

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: Sum & Count of Even Odd Separately in Array »

Loading

Array Sum & Count Odd Numbers C Plus Plus

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

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: Count and Sum of Even Numbers in Array C Plus… »

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: Reverse Number Sequence in Array C Plus Plus »

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: Fibonacci Sequence Generator Using Array C++ »

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: Basic Bubble Sort Code in C++ »

Loading