Wednesday, 26 October 2016

Sunday, 12 June 2016

Monday, 30 May 2016

C++ program of bubble sorting array

In this program we will learn how  to sort elements of array in bubble sorting order. The code is given below. //Code starts #include<iostream> #include<conio.h> using namespace std; int main() { int a[50],n,i,j,temp; cout<<"Enter the size of array: "; cin>>n; for(i=0;i<n;++i) { cout<<"Enter...
Share:

Friday, 27 May 2016

6 in 1 Program in C++

In this program we will learn how to combine 6 C++ program in a single C++ program and run them as per user desire. The code is given below //Code Starts #include <iostream> #include<math.h> #include<conio.h> using namespace std; int main() { int a,b,num,dig,sum,sub,mul; ...
Share:

Sunday, 15 May 2016

C++ Program to Sort Distorted Array

#include<iostream>#include<conio.h>using namespace std;//Function for partitioning arrayint part(int low,int high,int *a){     int i,h=high,l=low,p,t;  //p==pivot     p=a[low];     while(low<high)     {                   ...
Share:

Thursday, 12 May 2016

C++ Program of Array to Calculate Sum and Average of given Numbers

// This program calculates the average of any number of numbers. // Using the for structure #include <iostream> using namespace std; #include <iostream> int main() { int n, count; float x, sum, avg; sum = 0; cout << "How many numbers? "; cin >> n; int size= n; int array[size]; for (count=1; count<=n; count++){ cout << "Enter Number:...
Share:

C++ Program of Array to Calculate Average of Numbers Using Arrays

#include <iostream> using namespace std; int main(){ int n, i; float num[100], sum=0.0, average; cout << "Enter the numbers of data: "; cin >> n; while (n>100 || n<=0) { cout << "Error! number should in range of (1 to 100)." << endl; cout << "Enter the number again: "; cin >> n; } for(i=0; i<n;...
Share:

Monday, 9 May 2016

C++ Program to Find Even and Odd Elements in Array

#include<iostream.h> #include<conio.h> void main() { int arr[20],even[20],odd[20],i,j=0,k=0,no; clrscr(); cout<<"How Size of Array: "; cin>>no; cout<<"Enter any "<<no<<" elements in Array: "; for(i=0; i<no;i++) { cin>>arr[i]; } for(i=0; i<no;i++) { if(arr[i]%2==0) { even[j]=arr[i]; j++; } ...
Share: