Saturday, 7 May 2016

C++ Program of Two Dimensional Array

#include <iostream> using namespace std; int main () { // an array with 5 rows and 2 columns. int a[5][2] = { {0,0}, {1,2}, {2,4}, {3,6},{4,8}}; // output each array element's value for ( int i = 0; i < 5; i++ ) for ( int j = 0; j < 2; j++ ) { cout << "a[" << i << "][" << j << "]: "; cout...
Share:

Friday, 6 May 2016

C++ Program of Array to Sort 10 Integers in Descending Order

Dynamic Array: #include <iostream> using namespace std; const int N=10; int main() { int a[N],i,nb,tmp; for(i=0;i<N;i++) { cout << "Please enter an integer: "; cin >> a[i]; } do { nb=0; for (i=0;i<N-1;i++) if (a[i]>a[i+1]) { tmp=a[i];a[i]=a[i+1];a[i+1]=tmp; nb++; ...
Share:

C++ Program of Array to Find How Many Integers are Equal or Greater than 10

#include <iostream> using namespace std; int main() { int arr[10], n,greaterIntergers = 0; for (n = 0; n < 10; n++) { cout << "Input an Interger "; cin >> arr[n]; if (arr[n] >= 10) { greaterIntergers++; } } cout << greaterIntergers << " intergers are greater than or equals to 10" << endl; return 0; ...
Share:

C++ Program of Array

Static Array: #include <iostream> using namespace std; void printarray (int arg[], int length) { for (int n=0; n<length; ++n) cout << arg[n] << ' '; cout << '\n'; } int main () { int firstarray[] = {5, 10, 15}; int secondarray[] = {2, 4, 6, 8, 10}; printarray (firstarray,3); printarray (secondarray,5); }...
Share:

Tuesday, 3 May 2016

Sunday, 1 May 2016

C++ code to print right triangle shape using nested for loops

C++ Code: #include<iostream> #include<conio.h>using namespace std;int main(){   for(int i=0;i<=5;i++)       {        for(int j=0;j<=i;j++)                       {                cout<<j;           ...
Share: