Data structures and algorithms in C++
Data structures and algorithms in C++
2nd Edition
ISBN: 9780470460443
Author: Goodrich
Publisher: WILEY
Expert Solution & Answer
Chapter 1, Problem 2C

Explanation of Solution

Program code:

//include the required header files

#include<iostream>

//define the main() method

int main()

{

//declare an integer variable

const int size=3;

//declare an integer array

int arr[size],count=0;

//prompt the array elements

std::cout<<"\nEnter the contents of the array below\n";

//iterate a for loop

for(int i=0;i<size;i++)

    //scan for the array values

    std::cin>>arr[i];

//print the statement

std::cout<<"\nNOTE:It would not count pairs like (1,1) or (2,2)";

//print the pairs using for loop

std::cout<<"\nThese are the Pairs\n";

for(int i=0;i<size;i++)

{

    //int temp=arr[i];

    for(int j=0;j<size;j++)

    {

        //if i and j are equal

        if(i==j)

            //print

            std::cout<<"";

        //if i and j are not equal

        else

        {

            //if the condition is true

            if(arr[i]*arr[j]%2==0)

            {

                //print the pairs

      ;&#...

Blurred answer

Chapter 1 Solutions

Data structures and algorithms in C++

Knowledge Booster
Recommended textbooks for you
  • Database System Concepts
    Computer Science
    ISBN:9780078022159
    Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
    Publisher:McGraw-Hill Education
    Starting Out with Python (4th Edition)
    Computer Science
    ISBN:9780134444321
    Author:Tony Gaddis
    Publisher:PEARSON
    Digital Fundamentals (11th Edition)
    Computer Science
    ISBN:9780132737968
    Author:Thomas L. Floyd
    Publisher:PEARSON
  • C How to Program (8th Edition)
    Computer Science
    ISBN:9780133976892
    Author:Paul J. Deitel, Harvey Deitel
    Publisher:PEARSON
    Database Systems: Design, Implementation, & Manag...
    Computer Science
    ISBN:9781337627900
    Author:Carlos Coronel, Steven Morris
    Publisher:Cengage Learning
    Programmable Logic Controllers
    Computer Science
    ISBN:9780073373843
    Author:Frank D. Petruzella
    Publisher:McGraw-Hill Education
  • Database System Concepts
    Computer Science
    ISBN:9780078022159
    Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
    Publisher:McGraw-Hill Education
    Starting Out with Python (4th Edition)
    Computer Science
    ISBN:9780134444321
    Author:Tony Gaddis
    Publisher:PEARSON
    Digital Fundamentals (11th Edition)
    Computer Science
    ISBN:9780132737968
    Author:Thomas L. Floyd
    Publisher:PEARSON
    C How to Program (8th Edition)
    Computer Science
    ISBN:9780133976892
    Author:Paul J. Deitel, Harvey Deitel
    Publisher:PEARSON
    Database Systems: Design, Implementation, & Manag...
    Computer Science
    ISBN:9781337627900
    Author:Carlos Coronel, Steven Morris
    Publisher:Cengage Learning
    Programmable Logic Controllers
    Computer Science
    ISBN:9780073373843
    Author:Frank D. Petruzella
    Publisher:McGraw-Hill Education